/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
D | ExtractFunction.cpp | 136 Module *NewM = runPassesOn(M, LoopExtractPasses); in ExtractLoop() local 137 if (NewM == 0) { in ExtractLoop() 148 if (M->size() == NewM->size() || --NumExtracted == 0) { in ExtractLoop() 149 delete NewM; in ExtractLoop() 152 assert(M->size() < NewM->size() && "Loop extract removed functions?"); in ExtractLoop() 153 Module::iterator MI = NewM->begin(); in ExtractLoop() 158 return NewM; in ExtractLoop()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 628 void CreateNewModule() { NewM = llvm::CloneModule(*OldM).release(); } in CreateNewModule() 632 Module *NewM; member in __anon8541a5d70111::CloneModule 636 EXPECT_FALSE(verifyModule(*NewM)); in TEST_F() 646 Function *NewF = NewM->getFunction("f"); in TEST_F() 655 GlobalVariable *NewGV = NewM->getGlobalVariable("gv"); in TEST_F() 660 GlobalVariable *NewGV = NewM->getGlobalVariable("gv"); in TEST_F() 677 DISubprogram *SP = NewM->getFunction("f")->getSubprogram(); in TEST_F() 684 auto *NMD = NewM->getNamedMetadata("llvm.dbg.cu"); in TEST_F() 692 DISubprogram *SP = NewM->getFunction("f")->getSubprogram(); in TEST_F() 706 GlobalVariable *NewGV = NewM->getGlobalVariable("gv"); in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/ |
D | ExtractFunction.cpp | 156 std::unique_ptr<Module> NewM = runPassesOn(M, LoopExtractPasses); in extractLoop() local 157 if (!NewM) { in extractLoop() 168 if (M->size() == NewM->size() || --NumExtracted == 0) { in extractLoop() 171 assert(M->size() < NewM->size() && "Loop extract removed functions?"); in extractLoop() 172 Module::iterator MI = NewM->begin(); in extractLoop() 177 return NewM; in extractLoop()
|
/external/llvm/tools/bugpoint/ |
D | ExtractFunction.cpp | 158 std::unique_ptr<Module> NewM = runPassesOn(M, LoopExtractPasses); in extractLoop() local 159 if (!NewM) { in extractLoop() 170 if (M->size() == NewM->size() || --NumExtracted == 0) { in extractLoop() 173 assert(M->size() < NewM->size() && "Loop extract removed functions?"); in extractLoop() 174 Module::iterator MI = NewM->begin(); in extractLoop() 179 return NewM; in extractLoop()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-opt-fuzzer/ |
D | llvm-opt-fuzzer.cpp | 91 auto NewM = parseAndVerify( in LLVMFuzzerCustomMutator() local 93 if (!NewM) { in LLVMFuzzerCustomMutator()
|
/external/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 436 void CreateNewModule() { NewM = llvm::CloneModule(OldM).release(); } in CreateNewModule() 440 Module *NewM; member in __anon13ab407f0111::CloneModule 444 EXPECT_FALSE(verifyModule(*NewM)); in TEST_F() 454 Function *NewF = NewM->getFunction("f"); in TEST_F()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonStoreWidening.cpp | 421 MachineMemOperand *NewM = in createWideStores() local 441 StI->addMemOperand(*MF, NewM); in createWideStores() 464 StI->addMemOperand(*MF, NewM); in createWideStores()
|
D | HexagonISelLoweringHVX.cpp | 331 int NewM = M*ElemSize; in getByteShuffle() local 333 ByteMask.push_back(NewM+I); in getByteShuffle()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonStoreWidening.cpp | 426 MachineMemOperand *NewM = in createWideStores() local 445 StI->addMemOperand(*MF, NewM); in createWideStores() 467 StI->addMemOperand(*MF, NewM); in createWideStores()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ProgramState.cpp | 498 ProgramState::GenericDataMap NewM = GDMFactory.remove(OldM, Key); in removeGDM() local 500 if (NewM == OldM) in removeGDM() 504 NewState.GDM = NewM; in removeGDM()
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 779 MDNode *NewM = MDNode::get(CalledFunc->getContext(), NewOps); in CloneAliasScopeMetadata() local 783 TempM->replaceAllUsesWith(NewM); in CloneAliasScopeMetadata()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 859 MDNode *NewM = MDNode::get(CalledFunc->getContext(), NewOps); in CloneAliasScopeMetadata() local 863 TempM->replaceAllUsesWith(NewM); in CloneAliasScopeMetadata()
|
/external/llvm/lib/IR/ |
D | Verifier.cpp | 258 void updateModule(const Module *NewM) { in updateModule() argument 259 if (M == NewM) in updateModule() 261 MST.emplace(NewM); in updateModule() 262 M = NewM; in updateModule()
|