/external/swiftshader/third_party/subzero/src/ |
D | IceThreading.cpp | 23 : Sequence(Seq), Kind(WI_Nop), GlobalInits(nullptr), Function(nullptr), in EmitterWorkItem() 27 : Sequence(Seq), Kind(WI_GlobalInits), GlobalInits(std::move(D)), in EmitterWorkItem() 30 : Sequence(Seq), Kind(WI_Asm), GlobalInits(nullptr), Function(std::move(A)), in EmitterWorkItem() 33 : Sequence(Seq), Kind(WI_Cfg), GlobalInits(nullptr), Function(nullptr), in EmitterWorkItem() 39 GlobalInits = std::move(GloblInits); in setGlobalInits() 45 return std::move(GlobalInits); in getGlobalInits()
|
D | IceCfg.h | 148 return std::move(GlobalInits); in getGlobalInits() 151 if (GlobalInits == nullptr) { in addGlobal() 152 GlobalInits.reset(new VariableDeclarationList); in addGlobal() 154 GlobalInits->push_back(Global); in addGlobal() 157 if (GlobalInits == nullptr) { in getGlobalPool() 158 GlobalInits.reset(new VariableDeclarationList); in getGlobalPool() 160 return GlobalInits.get(); in getGlobalPool() 325 std::unique_ptr<VariableDeclarationList> GlobalInits; variable
|
D | IceCfg.cpp | 145 auto *Var = VariableDeclaration::create(GlobalInits.get()); in createNodeNameDeclaration() 149 GlobalInits.get(), NodeAsmName.data(), NodeAsmName.size() + 1)); in createNodeNameDeclaration() 152 GlobalInits->push_back(Var); in createNodeNameDeclaration() 157 auto *Var = VariableDeclaration::create(GlobalInits.get()); in createBlockProfilingInfoDeclaration() 161 GlobalInits.get(), Int64ByteSize)); in createBlockProfilingInfoDeclaration() 165 GlobalInits.get(), NodeNameDeclaration, in createBlockProfilingInfoDeclaration() 168 GlobalInits->push_back(Var); in createBlockProfilingInfoDeclaration()
|
D | IceThreading.h | 194 std::unique_ptr<VariableDeclarationList> GlobalInits; variable
|
D | IceASanInstrumentation.cpp | 130 std::vector<VariableDeclaration::Initializer *> GlobalInits = in instrumentGlobals() local 132 for (VariableDeclaration::Initializer *Init : GlobalInits) { in instrumentGlobals()
|
D | IceGlobalContext.cpp | 436 std::unique_ptr<VariableDeclarationList> GlobalInits = in translateFunctions() local 440 Item->setGlobalInits(std::move(GlobalInits)); in translateFunctions()
|
/external/llvm/lib/Transforms/IPO/ |
D | LowerTypeTests.cpp | 499 std::vector<Constant *> GlobalInits; in buildBitSetsFromGlobalVariables() local 502 GlobalInits.push_back(G->getInitializer()); in buildBitSetsFromGlobalVariables() 513 GlobalInits.push_back( in buildBitSetsFromGlobalVariables() 516 if (!GlobalInits.empty()) in buildBitSetsFromGlobalVariables() 517 GlobalInits.pop_back(); in buildBitSetsFromGlobalVariables() 518 Constant *NewInit = ConstantStruct::getAnon(M->getContext(), GlobalInits); in buildBitSetsFromGlobalVariables()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | LowerTypeTests.cpp | 823 std::vector<Constant *> GlobalInits; in buildBitSetsFromGlobalVariables() local 839 GlobalInits.push_back( in buildBitSetsFromGlobalVariables() 843 GlobalInits.push_back(GV->getInitializer()); in buildBitSetsFromGlobalVariables() 858 Constant *NewInit = ConstantStruct::getAnon(M.getContext(), GlobalInits); in buildBitSetsFromGlobalVariables()
|
/external/llvm-project/llvm/lib/Transforms/IPO/ |
D | LowerTypeTests.cpp | 833 std::vector<Constant *> GlobalInits; in buildBitSetsFromGlobalVariables() local 848 GlobalInits.push_back( in buildBitSetsFromGlobalVariables() 852 GlobalInits.push_back(GV->getInitializer()); in buildBitSetsFromGlobalVariables() 867 Constant *NewInit = ConstantStruct::getAnon(M.getContext(), GlobalInits); in buildBitSetsFromGlobalVariables()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 503 std::vector<std::pair<GlobalVariable *, unsigned>> GlobalInits; member in __anonab29aeb30411::BitcodeReader 2239 GlobalInitWorklist.swap(GlobalInits); in resolveGlobalAndIndirectSymbolInits() 2249 GlobalInits.push_back(GlobalInitWorklist.back()); in resolveGlobalAndIndirectSymbolInits() 2966 if (!GlobalInits.empty() || !IndirectSymbolInits.empty()) in globalCleanup() 2994 std::vector<std::pair<GlobalVariable *, unsigned>>().swap(GlobalInits); in globalCleanup() 3165 GlobalInits.push_back(std::make_pair(NewGV, InitID - 1)); in parseGlobalVarRecord()
|
/external/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 207 std::vector<std::pair<GlobalVariable*, unsigned> > GlobalInits; member in __anon2b916cd10111::BitcodeReader 2780 GlobalInitWorklist.swap(GlobalInits); in resolveGlobalAndIndirectSymbolInits() 2790 GlobalInits.push_back(GlobalInitWorklist.back()); in resolveGlobalAndIndirectSymbolInits() 3445 if (!GlobalInits.empty() || !IndirectSymbolInits.empty()) in globalCleanup() 3466 std::vector<std::pair<GlobalVariable*, unsigned> >().swap(GlobalInits); in globalCleanup() 3850 GlobalInits.push_back(std::make_pair(NewGV, InitID-1)); in parseModule()
|
/external/llvm-project/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 502 std::vector<std::pair<GlobalVariable *, unsigned>> GlobalInits; member in __anona132453f0411::BitcodeReader 2247 GlobalInitWorklist.swap(GlobalInits); in resolveGlobalAndIndirectSymbolInits() 2257 GlobalInits.push_back(GlobalInitWorklist.back()); in resolveGlobalAndIndirectSymbolInits() 3026 if (!GlobalInits.empty() || !IndirectSymbolInits.empty()) in globalCleanup() 3057 std::vector<std::pair<GlobalVariable *, unsigned>>().swap(GlobalInits); in globalCleanup() 3228 GlobalInits.push_back(std::make_pair(NewGV, InitID - 1)); in parseGlobalVarRecord()
|