Home
last modified time | relevance | path

Searched refs:EntryBuilder (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h70 class EntryBuilder;
181 class DebugLocStream::EntryBuilder {
185 EntryBuilder(ListBuilder &List, const MCSymbol *Begin, const MCSymbol *End)
191 ~EntryBuilder() { Locs.finalizeEntry(); }
71 class EntryBuilder; global() variable
187 EntryBuilder(ListBuilder &List, const MCSymbol *Begin, const MCSymbol *End) EntryBuilder() function
H A DDwarfDebug.cpp3176 DebugLocStream::EntryBuilder Entry(List, Begin, End); in finalize()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp3503 EntryBuilder->setDebugLoc(PI->getDebugLoc()); in finishPendingPhis()
3652 EntryBuilder->setDebugLoc(DebugLoc()); in translate()
3658 EntryBuilder->buildConstant(Reg, *CI); in translate()
3663 EntryBuilder->buildFConstant(Reg, *CF); in translate()
3665 EntryBuilder->buildUndef(Reg); in translate()
3667 EntryBuilder->buildConstant(Reg, 0); in translate()
3669 EntryBuilder->buildGlobalValue(Reg, GV); in translate()
3673 EntryBuilder->buildConstantPtrAuth(Reg, CPA, Addr, AddrDisc); in translate()
3677 EntryBuilder->buildSplatVector(Reg, getOrCreateVReg(Elt)); in translate()
3683 return translateCopy(C, Elt, *EntryBuilder); in translate()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp1135 IRBuilder<> EntryBuilder(&Fn->getEntryBlock().front()); in getCounterAddress() local
1137 BiasLI = EntryBuilder.CreateLoad(Int64Ty, Bias, "profc_bias"); in getCounterAddress()
1154 IRBuilder<> EntryBuilder(&Fn->getEntryBlock().front()); in getBitmapAddress() local
1156 auto *BiasLI = EntryBuilder.CreateLoad(Int64Ty, Bias, "profbm_bias"); in getBitmapAddress()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h607 std::unique_ptr<MachineIRBuilder> EntryBuilder; variable