Home
last modified time | relevance | path

Searched refs:GetInsertPoint (Results 1 – 25 of 25) sorted by relevance

/external/llvm/lib/Transforms/Utils/
DIntegerDivision.cpp220 BasicBlock *End = SpecialCases->splitBasicBlock(Builder.GetInsertPoint(), in generateUnsignedDivisionCode()
394 bool IsInsertPoint = Rem->getIterator() == Builder.GetInsertPoint(); in expandRemainder()
405 BinaryOperator *BO = dyn_cast<BinaryOperator>(Builder.GetInsertPoint()); in expandRemainder()
418 if (BinaryOperator *UDiv = dyn_cast<BinaryOperator>(Builder.GetInsertPoint())) { in expandRemainder()
453 bool IsInsertPoint = Div->getIterator() == Builder.GetInsertPoint(); in expandDivision()
464 BinaryOperator *BO = dyn_cast<BinaryOperator>(Builder.GetInsertPoint()); in expandDivision()
DLoopUtils.cpp717 return Exp.expandCodeFor(S, StartValue->getType(), &*B.GetInsertPoint()); in transform()
725 Index = Exp.expandCodeFor(S, Index->getType(), &*B.GetInsertPoint()); in transform()
DFlattenCFG.cpp440 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint(); in MergeIfRegion()
DSimplifyCFG.cpp2644 SplitBlockAndInsertIfThen(CombinedPred, &*QB.GetInsertPoint(), false); in mergeConditionalStoreToAddress()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DScalarEvolutionExpander.cpp137 BasicBlock::iterator IP = Builder.GetInsertPoint(); in InsertBinop()
154 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint(); in InsertBinop()
507 BasicBlock::iterator IP = Builder.GetInsertPoint(); in expandAddToGEP()
524 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint(); in expandAddToGEP()
549 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint(); in expandAddToGEP()
985 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint(); in getAddRecExprPHILiterally()
1129 Builder.GetInsertPoint())) && in expandAddRecExprLiterally()
1181 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint(); in visitAddRecExpr()
1388 Instruction *InsertPt = Builder.GetInsertPoint(); in expand()
1414 BasicBlock::iterator SaveInsertPt = Builder.GetInsertPoint(); in expand()
[all …]
/external/llvm/include/llvm/Analysis/
DScalarEvolutionExpander.h103 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()), in SCEVInsertPointGuard()
118 BasicBlock::iterator GetInsertPoint() const { return Point; } in GetInsertPoint() function
/external/llvm/lib/Analysis/
DScalarEvolutionExpander.cpp50 BasicBlock::iterator BIP = Builder.GetInsertPoint(); in ReuseOrCreateCast()
182 BasicBlock::iterator IP = Builder.GetInsertPoint(); in InsertBinop()
198 DebugLoc Loc = Builder.GetInsertPoint()->getDebugLoc(); in InsertBinop()
495 SE.DT.dominates(cast<Instruction>(V), &*Builder.GetInsertPoint())); in expandAddToGEP()
510 BasicBlock::iterator IP = Builder.GetInsertPoint(); in expandAddToGEP()
916 if (Builder.GetInsertPoint() == It) in fixupInsertPoints()
919 if (InsertPtGuard->GetInsertPoint() == It) in fixupInsertPoints()
1329 &*Builder.GetInsertPoint())) { in expandAddRecExprLiterally()
1666 Instruction *InsertPt = &*Builder.GetInsertPoint(); in expand()
1685 while (InsertPt->getIterator() != Builder.GetInsertPoint() && in expand()
/external/tensorflow/tensorflow/compiler/xla/service/
Delemental_ir_emitter.cc1234 CHECK_EQ(ir_builder_->GetInsertPoint() == in_block->end(), in MakeRngElementGenerator()
1240 if (ir_builder_->GetInsertPoint() == in_block->end()) { in MakeRngElementGenerator()
1248 ir_builder_->GetInsertPoint(), "rng_body"); in MakeRngElementGenerator()
1250 ir_builder_->GetInsertPoint(), "rng_out"); in MakeRngElementGenerator()
1412 CHECK_EQ(ir_builder_->GetInsertPoint() == init_block->end(), in MakeElementGenerator()
1416 if (ir_builder_->GetInsertPoint() == init_block->end()) { in MakeElementGenerator()
1421 ir_builder_->GetInsertPoint(), AsStringRef(IrName(hlo, "merge"))); in MakeElementGenerator()
1430 auto prior_insert_point = ir_builder_->GetInsertPoint(); in MakeElementGenerator()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DIRBuilder.cpp58 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI); in createCallHelper()
/external/llvm/lib/Transforms/Instrumentation/
DBoundsChecking.cpp109 BasicBlock::iterator Inst = Builder->GetInsertPoint(); in emitBranchToTrap()
DPGOInstrumentation.cpp361 assert(Builder.GetInsertPoint() != InstrBB->end() && in instrumentOneFunc()
380 assert(Builder.GetInsertPoint() != I->getParent()->end() && in instrumentOneFunc()
DMemorySanitizer.cpp745 Cmp, &*IRB.GetInsertPoint(), false, MS.OriginStoreWeights); in storeOrigin()
/external/llvm/unittests/IR/
DIRBuilderTest.cpp332 EXPECT_EQ(F, &*Builder.GetInsertPoint()); in TEST_F()
335 EXPECT_EQ(BB->end(), Builder.GetInsertPoint()); in TEST_F()
/external/llvm/lib/IR/
DIRBuilder.cpp63 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI); in createCallHelper()
75 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(), in createInvokeHelper()
/external/llvm/lib/Target/X86/
DX86WinEHState.cpp296 insertStateNumberStore(&*Builder.GetInsertPoint(), ParentBaseState); in emitExceptionRegistrationRecord()
326 insertStateNumberStore(&*Builder.GetInsertPoint(), ParentBaseState); in emitExceptionRegistrationRecord()
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
Dllvm_loop.cc64 llvm::BasicBlock::iterator insert_point = ir_builder->GetInsertPoint(); in Emit()
Dllvm_util.cc431 ir_builder->GetInsertPoint(), in EmitIfThenElse()
/external/llvm/include/llvm/IR/
DIRBuilder.h104 BasicBlock::iterator GetInsertPoint() const { return InsertPt; } in GetInsertPoint() function
171 return InsertPoint(GetInsertBlock(), GetInsertPoint()); in saveIP()
176 InsertPoint IP(GetInsertBlock(), GetInsertPoint()); in saveAndClearIP()
221 : Builder(B), Block(B.GetInsertBlock()), Point(B.GetInsertPoint()), in InsertPointGuard()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DIRBuilder.h68 BasicBlock::iterator GetInsertPoint() const { return InsertPt; } in GetInsertPoint() function
149 return InsertPoint(GetInsertBlock(), GetInsertPoint()); in saveIP()
155 InsertPoint IP(GetInsertBlock(), GetInsertPoint()); in saveAndClearIP()
/external/llvm/lib/CodeGen/
DAtomicExpandPass.cpp885 BB->splitBasicBlock(Builder.GetInsertPoint(), "atomicrmw.end"); in insertRMWLLSCLoop()
1236 BB->splitBasicBlock(Builder.GetInsertPoint(), "atomicrmw.end"); in insertRMWCmpXchgLoop()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dir_emitter.cc354 ir_builder_.GetInsertPoint(), "atomic_op_loop_exit"); in EmitAtomicOperationUsingCAS()
/external/clang/lib/CodeGen/
DCGCleanup.cpp493 assert(!WasInsertBlock || CGF.Builder.GetInsertPoint() == Entry->end()); in SimplifyCleanupEntry()
DCodeGenFunction.cpp2006 llvm::IRBuilder<> IRB(Builder.GetInsertBlock(), Builder.GetInsertPoint()); in EmitSanitizerStatReport()
DCGBlocks.cpp1240 llvm::BasicBlock::iterator entry_ptr = Builder.GetInsertPoint(); in GenerateBlockFunction()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1957 &*Builder.GetInsertPoint()); in widenIntInduction()