| /freebsd-13.1/contrib/llvm-project/llvm/lib/Option/ |
| H A D | Option.cpp | 137 A->getValues().push_back(Value); in acceptInternal() 175 A->getValues().push_back(Args.getArgString(Index - getNumArgs() + i)); in acceptInternal() 212 A->getValues().push_back(Args.getArgString(Index++)); in acceptInternal() 219 A->getValues().push_back(Args.getArgString(Index) + ArgSize); in acceptInternal() 224 A->getValues().push_back(Args.getArgString(Index++)); in acceptInternal() 272 UnaliasedA->getValues() = RawA->getValues(); in accept() 281 UnaliasedA->getValues().push_back(Val); in accept() 289 UnaliasedA->getValues().push_back(""); in accept()
|
| H A D | ArgList.cpp | 142 const auto &Values = Arg->getValues(); in AddAllArgValues()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Option/ |
| H A D | Arg.h | 117 SmallVectorImpl<const char *> &getValues() { return Values; } in getValues() function 118 const SmallVectorImpl<const char *> &getValues() const { return Values; } in getValues() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | GVNSink.cpp | 290 ArrayRef<Value *> getValues() const { return Values; } in getValues() function in __anonf9347de70111::ModelledPHI 603 for (auto *V : MPHI.getValues()) in analyzeInitialPHIs() 703 PHIContents.insert(PHI.getValues().begin(), PHI.getValues().end()); in analyzeInstructionForSinking() 708 for (auto *V : NewPHI.getValues()) in analyzeInstructionForSinking() 746 PHIContents.insert(PHI.getValues().begin(), PHI.getValues().end()); in analyzeInstructionForSinking()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenMapTable.cpp | 134 for (Init *I : ColValList->getValues()) { in InstrMap() 234 for (Init *RowField : RowFields->getValues()) { in buildRowInstrMap() 307 for (Init *RowField : RowFields->getValues()) { in getInstrForColumn() 481 for (Init *CF : ColFields->getValues()) { in emitTablesWithFunc()
|
| H A D | CodeEmitterGen.cpp | 300 for (const RecordVal &RV : R->getValues()) { in getInstructionCaseForEncoding() 311 for (const RecordVal &RV : EncodingDef->getValues()) { in getInstructionCaseForEncoding()
|
| H A D | CodeGenDAGPatterns.cpp | 1007 for (Init *Val : AddressSpaces->getValues()) { in getPredCode() 1448 for (Init *I : Predicates->getValues()) { in getPredicateRecords() 1848 for (Init *I : LI->getValues()) { in GetNumNodeResults() 2746 for (Init *I : RawPat->getValues()) in TreePattern() 3664 for (Init *I : LI->getValues()) { in hasNullFragReference()
|
| H A D | SearchableTableEmitter.cpp | 781 for (const RecordVal &Field : Class->getValues()) { in run()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Record.cpp | 586 ProfileListInit(ID, getValues(), EltTy); in Profile() 595 Elements.reserve(getValues().size()); in convertInitializerTo() 601 for (Init *I : getValues()) in convertInitializerTo() 647 for (Init *CurElt : getValues()) { in resolveReferences() 1271 for (Init *Item : MHSl->getValues()) { in FilterHelper() 1834 for (const RecordVal &Val : Class->getValues()) in instantiate() 2446 for (const RecordVal &Val : R.getValues()) in operator <<() 2449 for (const RecordVal &Val : R.getValues()) in operator <<() 2524 for (Init *I : List->getValues()) { in getValueAsListOfDefs() 2552 for (Init *I : List->getValues()) { in getValueAsListOfInts() [all …]
|
| H A D | DetailedRecordsBackend.cpp | 177 const auto &ValueList = Rec->getValues(); in printFields()
|
| H A D | JSONBackend.cpp | 144 for (const RecordVal &RV : Def.getValues()) { in run()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineOperand.cpp | 687 if (!CFI.getValues().empty()) { in printCFI() 688 size_t e = CFI.getValues().size() - 1; in printCFI() 690 OS << format("0x%02x", uint8_t(CFI.getValues()[i])) << ", "; in printCFI() 691 OS << format("0x%02x", uint8_t(CFI.getValues()[e])); in printCFI()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.h | 197 const ValueList &getValues() const { return Values; } in getValues() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DebugLocEntry.h | 205 ArrayRef<DbgValueLoc> getValues() const { return Values; } in getValues() function
|
| H A D | AsmPrinterDwarf.cpp | 272 OutStreamer->emitCFIEscape(Inst.getValues()); in emitCFIInstruction()
|
| H A D | DwarfDebug.cpp | 1760 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList() 1761 for (auto &Value : CurEntry->getValues()) in buildLocationList() 1804 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList() 1902 RegVar->initializeDbgValue(Entries[0].getValues()[0]); in collectEntityInfo()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/ |
| H A D | ARM.cpp | 55 for (StringRef Value : A->getValues()) { in getARMArchCPUFromArgs() 228 for (StringRef Value : A->getValues()) { in setArchNameInTriple() 459 for (StringRef Value : A->getValues()) { in getARMTargetFeatures()
|
| H A D | AArch64.cpp | 198 for (StringRef Value : A->getValues()) in getAArch64TargetFeatures()
|
| /freebsd-13.1/contrib/llvm-project/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 478 for (const char *Val : Arg->getValues()) in main_gdbserver()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.h | 66 ArrayRef<DWARFFormValue> getValues() const { return Values; } in getValues() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCDwarf.h | 627 StringRef getValues() const { in getValues() function
|
| /freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 458 bool hasBody() const { return Body && !Body->getValues().empty(); } in hasBody() 1365 if (!Body || Body->getValues().empty()) { in emitBody() 1372 for (auto *I : Body->getValues()) { in emitBody()
|
| /freebsd-13.1/contrib/llvm-project/lldb/tools/driver/ |
| H A D | Driver.cpp | 373 for (auto value : arg->getValues()) in ProcessArgs()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | Hexagon.cpp | 461 for (const char *Value : A->getValues()) in getHexagonLibraryPaths()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 715 ArrayRef<Init*> getValues() const { in getValues() function 1567 ArrayRef<RecordVal> getValues() const { return Values; } in getValues() function
|