Home
last modified time | relevance | path

Searched refs:ArgIndices (Results 1 – 22 of 22) sorted by relevance

/external/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp699 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in DoPromotion() local
718 ArgIndices.insert(std::make_pair(SrcTy, Indices)); in DoPromotion()
729 for (const auto &ArgIndex : ArgIndices) { in DoPromotion()
737 if (ArgIndices.size() == 1 && ArgIndices.begin()->second.empty()) in DoPromotion()
820 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in DoPromotion() local
824 for (const auto &ArgIndex : ArgIndices) { in DoPromotion()
971 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in DoPromotion() local
975 assert(ArgIndices.begin()->second.empty() && in DoPromotion()
995 for (ScalarizeTable::iterator It = ArgIndices.begin(); in DoPromotion()
997 assert(It != ArgIndices.end() && "GEP not handled??"); in DoPromotion()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp167 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in doPromotion() local
186 ArgIndices.insert(std::make_pair(SrcTy, Indices)); in doPromotion()
197 for (const auto &ArgIndex : ArgIndices) { in doPromotion()
206 if (ArgIndices.size() == 1 && ArgIndices.begin()->second.empty()) in doPromotion()
276 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in doPromotion() local
280 for (const auto &ArgIndex : ArgIndices) { in doPromotion()
427 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in doPromotion() local
431 assert(ArgIndices.begin()->second.empty() && in doPromotion()
451 for (ScalarizeTable::iterator It = ArgIndices.begin(); in doPromotion()
453 assert(It != ArgIndices.end() && "GEP not handled??"); in doPromotion()
[all …]
/external/llvm-project/llvm/lib/Transforms/IPO/
DArgumentPromotion.cpp163 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in doPromotion() local
182 ArgIndices.insert(std::make_pair(SrcTy, Indices)); in doPromotion()
193 for (const auto &ArgIndex : ArgIndices) { in doPromotion()
202 if (ArgIndices.size() == 1 && ArgIndices.begin()->second.empty()) in doPromotion()
273 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in doPromotion() local
277 for (const auto &ArgIndex : ArgIndices) { in doPromotion()
427 ScalarizeTable &ArgIndices = ScalarizedElements[&*I]; in doPromotion() local
431 assert(ArgIndices.begin()->second.empty() && in doPromotion()
451 for (ScalarizeTable::iterator It = ArgIndices.begin(); in doPromotion()
453 assert(It != ArgIndices.end() && "GEP not handled??"); in doPromotion()
[all …]
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/
DTypeHashingTest.cpp30 AR.ArgIndices.push_back(Q); in createArgListRecord()
31 AR.ArgIndices.push_back(R); in createArgListRecord()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h247 : TypeRecord(Kind), ArgIndices(Indices) {} in ArgListRecord()
249 ArrayRef<TypeIndex> getIndices() const { return ArgIndices; } in getIndices()
251 std::vector<TypeIndex> ArgIndices; variable
676 BuildInfoRecord(ArrayRef<TypeIndex> ArgIndices) in BuildInfoRecord() argument
678 ArgIndices(ArgIndices.begin(), ArgIndices.end()) {} in BuildInfoRecord()
680 ArrayRef<TypeIndex> getArgs() const { return ArgIndices; } in getArgs()
692 SmallVector<TypeIndex, MaxArgs> ArgIndices; variable
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h241 : TypeRecord(Kind), ArgIndices(Indices) {} in ArgListRecord()
243 ArrayRef<TypeIndex> getIndices() const { return ArgIndices; } in getIndices()
245 std::vector<TypeIndex> ArgIndices; variable
670 BuildInfoRecord(ArrayRef<TypeIndex> ArgIndices) in BuildInfoRecord() argument
672 ArgIndices(ArgIndices.begin(), ArgIndices.end()) {} in BuildInfoRecord()
674 ArrayRef<TypeIndex> getArgs() const { return ArgIndices; } in getArgs()
686 SmallVector<TypeIndex, MaxArgs> ArgIndices; variable
/external/llvm-project/llvm/test/DebugInfo/PDB/
Dpdbdump-yaml-types.test18 YAML: ArgIndices: [ ]
77 YAML: ArgIndices: [ 4099 ]
177 YAML: ArgIndices: [ 4109, 48 ]
190 YAML: ArgIndices: [ 4109 ]
300 YAML: ArgIndices: [ 4121 ]
403 YAML: ArgIndices: [ 4130 ]
542 YAML: ArgIndices: [ 4142, 4146, 4146, 4146, 116, 48, 4146, 116,
556 YAML: ArgIndices: [ 4142 ]
879 YAML: ArgIndices: [ 117 ]
964 YAML: ArgIndices: [ 4164 ]
/external/llvm-project/lldb/test/Shell/ObjectFile/PDB/
Dobject.test245 ArgIndices: [ 116, 4096 ]
271 ArgIndices: [ 4097, 0, 4098, 0, 0 ]
/external/llvm-project/lld/test/COFF/
Dpdb-tpi-aligned-records.test32 ArgIndices: [ ]
Dpdb.test47 # CHECK-NEXT: ArgIndices: [ ]
61 # CHECK-NEXT: ArgIndices: [ 0 ]
111 # CHECK-NEXT: ArgIndices: [ 4098, 4099, 4103, 4104, 4102 ]
118 # CHECK-NEXT: ArgIndices: [ 4098, 4099, 4106, 4104, 4102 ]
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h815 BuildInfoRecord(ArrayRef<TypeIndex> ArgIndices) in BuildInfoRecord() argument
817 ArgIndices(ArgIndices.begin(), ArgIndices.end()) {} in BuildInfoRecord()
826 ArrayRef<TypeIndex> getArgs() const { return ArgIndices; } in getArgs()
833 SmallVector<TypeIndex, 4> ArgIndices; variable
/external/llvm-project/llvm/test/DebugInfo/COFF/
Dglobal-type-hashes.ll164 ; YAML: ArgIndices: [ 116, 4096 ]
193 ; YAML: ArgIndices: [ 116, 116 ]
206 ; YAML: ArgIndices: [ ]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeFunctionSig.cpp139 /* copy */ ArgList.ArgIndices); in findChildren()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeFunctionSig.cpp139 /* copy */ ArgList.ArgIndices); in findChildren()
/external/llvm-project/llvm/test/tools/llvm-readobj/COFF/
Dcodeview-merging-ghash.test110 ArgIndices: [ ]
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeRecordMapping.cpp315 Record.ArgIndices, in visitKnownRecord()
547 Record.ArgIndices, in visitKnownRecord()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DTypeRecordMapping.cpp315 Record.ArgIndices, in visitKnownRecord()
546 Record.ArgIndices, in visitKnownRecord()
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp429 IO.mapRequired("ArgIndices", Record.ArgIndices); in map()
583 IO.mapRequired("ArgIndices", Record.ArgIndices); in map()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp429 IO.mapRequired("ArgIndices", Record.ArgIndices); in map()
583 IO.mapRequired("ArgIndices", Record.ArgIndices); in map()
/external/llvm/lib/DebugInfo/CodeView/
DTypeRecord.cpp513 for (TypeIndex &Arg : ArgIndices) in remapTypeIndices()
/external/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalTypeDumper.cpp487 auto Indices = BI.ArgIndices; in visitKnownRecord()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbAstBuilder.cpp1137 llvm::ArrayRef<TypeIndex> arg_indices = llvm::makeArrayRef(args.ArgIndices); in CreateFunctionType()