Home
last modified time | relevance | path

Searched refs:InsertAtEnd (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp35 InsertPosition::InsertPosition(BasicBlock *InsertAtEnd) in InsertPosition() argument
36 : InsertAt(InsertAtEnd ? InsertAtEnd->end() : InstListType::iterator()) {} in InsertPosition()
H A DDIBuilder.cpp1077 BasicBlock *InsertAtEnd) { in insertDeclare() argument
1080 Instruction *InsertBefore = InsertAtEnd->getTerminator(); in insertDeclare()
1083 : InsertAtEnd->end()); in insertDeclare()
H A DDebugInfo.cpp1923 LLVMBasicBlockRef InsertAtEnd) { in LLVMDIBuilderInsertLabelAtEnd() argument
1926 InsertAtEnd ? InsertPosition(unwrap(InsertAtEnd)->end()) : nullptr); in LLVMDIBuilderInsertLabelAtEnd()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h59 LLVM_ABI InsertPosition(BasicBlock *InsertAtEnd);
H A DDIBuilder.h1120 BasicBlock *InsertAtEnd);
H A DInstructions.h3012 static ReturnInst *Create(LLVMContext &C, BasicBlock *InsertAtEnd) {
3014 return new (AllocMarker) ReturnInst(C, nullptr, AllocMarker, InsertAtEnd);
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h1525 LLVMMetadataRef Location, LLVMBasicBlockRef InsertAtEnd);
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DInstruction.h30 InsertPosition(BasicBlock *InsertAtEnd) { in InsertPosition() argument
31 assert(InsertAtEnd != nullptr && "Expected non-null!"); in InsertPosition()
32 InsertAt = InsertAtEnd->end(); in InsertPosition()