| /netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| H A D | DetailedRecordsBackend.cpp | 179 const auto &ValueList = Rec->getValues(); in printFields() local 180 if (ValueList.empty()) { in printFields() 186 for (const RecordVal &Value : ValueList) in printFields()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 497 BitcodeReaderValueList ValueList; member in __anon8c0d27130411::BitcodeReader 631 return ValueList.getValueFwdRef(ID, Ty, FullTy); in getFnValueByID() 865 ValueList(Context, Stream.SizeInBytes()) { in BitcodeReader() 2054 if (ValueID >= ValueList.size() || !ValueList[ValueID]) in recordValue() 2056 Value *V = ValueList[ValueID]; in recordValue() 2139 cast<Function>(ValueList[Record[0]]), Record); in parseGlobalValueSymbolTable() 2284 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits() 2288 if (Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID])) in resolveGlobalAndIndirectSymbolInits() 2298 if (ValID >= ValueList.size()) { in resolveGlobalAndIndirectSymbolInits() 2301 Constant *C = dyn_cast_or_null<Constant>(ValueList[ValID]); in resolveGlobalAndIndirectSymbolInits() [all …]
|
| H A D | MetadataLoader.cpp | 420 BitcodeReaderValueList &ValueList; member in MetadataLoader::MetadataLoaderImpl 646 BitcodeReaderValueList &ValueList, in MetadataLoaderImpl() argument 650 ValueList(ValueList), Stream(Stream), Context(TheModule.getContext()), in MetadataLoaderImpl() 951 if (ValueID >= ValueList.size()) in loadGlobalDeclAttachments() 953 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID])) { in loadGlobalDeclAttachments() 1244 LocalAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)), in parseOneMetadata() 1264 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[i + 1], Ty)); in parseOneMetadata() 1284 ValueAsMetadata::get(ValueList.getValueFwdRef(Record[1], Ty)), in parseOneMetadata() 2063 if (ValueID >= ValueList.size()) in parseOneMetadata() 2065 if (auto *GO = dyn_cast<GlobalObject>(ValueList[ValueID])) in parseOneMetadata() [all …]
|
| H A D | CMakeLists.txt | 6 ValueList.cpp
|
| H A D | MetadataLoader.h | 41 BitcodeReaderValueList &ValueList, bool IsImporting,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.h | 48 using ValueList = std::vector<std::pair<const Value *, unsigned>>; variable 63 ValueList Values; 197 const ValueList &getValues() const { return Values; } in getValues()
|
| H A D | BitcodeWriter.cpp | 2435 const ValueEnumerator::ValueList &Vals = VE.getValues(); in writeConstants() 2662 const ValueEnumerator::ValueList &Vals = VE.getValues(); in writeModuleConstants()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/lib/Bitcode/Reader/ |
| H A D | BUILD.gn | 15 "ValueList.cpp",
|
| /netbsd-src/external/apache2/llvm/lib/libLLVMBitReader/ |
| H A D | Makefile | 13 ValueList.cpp
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | CallEvent.h | 191 using ValueList = SmallVectorImpl<SVal>; variable 195 virtual void getExtraInvalidatedValues(ValueList &Values, in getExtraInvalidatedValues() 567 void getExtraInvalidatedValues(ValueList &Values, 671 void getExtraInvalidatedValues(ValueList &Values, 856 void getExtraInvalidatedValues(ValueList &Values, 1136 void getExtraInvalidatedValues(ValueList &Values,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | ProgramState.cpp | 151 typedef ArrayRef<SVal> ValueList; typedef 171 ProgramState::invalidateRegions(ValueList Values, in invalidateRegions() 184 ProgramState::invalidateRegionsImpl(ValueList Values, in invalidateRegionsImpl()
|
| H A D | CallEvent.cpp | 678 ValueList &Values, RegionAndSymbolInvalidationTraits *ETraits) const { in getExtraInvalidatedValues() 857 void BlockCall::getExtraInvalidatedValues(ValueList &Values, in getExtraInvalidatedValues() 893 void AnyCXXConstructorCall::getExtraInvalidatedValues(ValueList &Values, in getExtraInvalidatedValues() 947 ValueList &Values, RegionAndSymbolInvalidationTraits *ETraits) const { in getExtraInvalidatedValues()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 588 using ValueList = SmallVector<Value *, 8>; typedef in llvm::slpvectorizer::BoUpSLP 1378 ValueList getVL(unsigned OpIdx) const { in getVL() 1379 ValueList OpVL(OpsVec[OpIdx].size()); in getVL() 1627 ValueList Scalars; 1663 SmallVector<ValueList, 2> Operands; 1699 ValueList &getOperand(unsigned OpIdx) { in getOperand() 2831 SmallVector<ValueList, 2> OperandsVec; in buildTree_rec() 2833 ValueList Operands; in buildTree_rec() 2856 ValueList Op0; in buildTree_rec() 2877 ValueList Op0; in buildTree_rec() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 584 const EVT *ValueList; 925 SDVTList X = { ValueList, NumValues }; 960 return ValueList[ResNo]; 979 value_iterator value_begin() const { return ValueList; } 980 value_iterator value_end() const { return ValueList+NumValues; } 1057 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs),
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParsePragma.cpp | 3157 SmallVector<Token, 1> ValueList; in ParseLoopHintValue() local 3169 ValueList.push_back(Tok); in ParseLoopHintValue() 3186 ValueList.push_back(EOFTok); // Terminates expression for parsing. in ParseLoopHintValue() 3188 markAsReinjectedForRelexing(ValueList); in ParseLoopHintValue() 3189 Info.Toks = llvm::makeArrayRef(ValueList).copy(PP.getPreprocessorAllocator()); in ParseLoopHintValue()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGDumper.cpp | 604 for (unsigned i = 0, e = ValueList[0].getVectorNumElements(); i != e; ++i) { in print_details()
|
| H A D | SelectionDAG.cpp | 8415 N->ValueList = VTs.VTs; in MorphNodeTo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/TableGen/ |
| H A D | ProgRef.rst | 382 SimpleValue4: "{" [`ValueList`] "}" 383 ValueList: `ValueListNE` 391 SimpleValue5: "[" `ValueList` "]" ["<" `Type` ">"] 622 ClassRef: (`ClassID` | `MultiClassID`) ["<" [`ValueList`] ">"]
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | sqlite3.c | 23573 typedef struct ValueList ValueList; typedef 23574 struct ValueList { struct 90893 ValueList *pRhs; 90904 pRhs = (ValueList*)pVal->z; 100832 ValueList *pRhs; /* New ValueList object to put in reg[P2] */
|