Home
last modified time | relevance | path

Searched refs:BeginLabel (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp209 MCSymbol *BeginLabel = LandingPad->BeginLabels[j]; in computePadMap() local
210 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!"); in computePadMap()
212 PadMap[BeginLabel] = P; in computePadMap()
252 MCSymbol *BeginLabel = MI.getOperand(0).getMCSymbol(); in computeCallSiteTable() local
253 if (BeginLabel == LastLabel) in computeCallSiteTable()
257 RangeMapType::const_iterator L = PadMap.find(BeginLabel); in computeCallSiteTable()
264 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] && in computeCallSiteTable()
272 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 }; in computeCallSiteTable()
278 assert(BeginLabel && LastLabel && "Invalid landing pad!"); in computeCallSiteTable()
286 BeginLabel, in computeCallSiteTable()
[all …]
DAddressPool.cpp29 MCSymbol *BeginLabel = Asm.createTempSymbol(Prefix + "start"); in emitHeader() local
33 Asm.EmitLabelDifference(EndLabel, BeginLabel, in emitHeader()
35 Asm.OutStreamer->EmitLabel(BeginLabel); in emitHeader()
DEHStreamer.h63 MCSymbol *BeginLabel; // Null indicates the start of the function. member
DWinException.h52 const MCSymbol *BeginLabel,
DCodeViewDebug.cpp1103 const MCSymbol *BeginLabel = std::get<0>(HeapAllocSite); in emitDebugInfoForFunction() local
1108 OS.EmitCOFFSecRel32(BeginLabel, /*Offset=*/0); in emitDebugInfoForFunction()
1110 OS.EmitCOFFSectionIndex(BeginLabel); in emitDebugInfoForFunction()
1112 OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 2); in emitDebugInfoForFunction()
2915 MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(), in beginCVSubsection() local
2919 OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 4); in beginCVSubsection()
2920 OS.EmitLabel(BeginLabel); in beginCVSubsection()
2938 MCSymbol *BeginLabel = MMI->getContext().createTempSymbol(), in beginSymbolRecord() local
2941 OS.emitAbsoluteSymbolDiff(EndLabel, BeginLabel, 2); in beginSymbolRecord()
2942 OS.EmitLabel(BeginLabel); in beginSymbolRecord()
DWinException.cpp616 const MCSymbol *BeginLabel, in emitSEHActionsForRange() argument
626 assert(BeginLabel && EndLabel); in emitSEHActionsForRange()
644 OS.EmitValue(getLabel(BeginLabel), 4); in emitSEHActionsForRange()
DDwarfUnit.cpp1624 MCSymbol *BeginLabel = Asm->createTempSymbol(Prefix + "start"); in emitCommonHeader() local
1626 Asm->EmitLabelDifference(EndLabel, BeginLabel, 4); in emitCommonHeader()
1627 Asm->OutStreamer->EmitLabel(BeginLabel); in emitCommonHeader()
DDwarfDebug.cpp2124 MCSymbol *BeginLabel = Asm->createTempSymbol("pub" + Name + "_begin"); in emitDebugPubSection() local
2126 Asm->EmitLabelDifference(EndLabel, BeginLabel, 4); in emitDebugPubSection()
2128 Asm->OutStreamer->EmitLabel(BeginLabel); in emitDebugPubSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineFunction.h875 MCSymbol *BeginLabel, MCSymbol *EndLabel);
937 void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site) {
938 CallSiteMap[BeginLabel] = Site;
942 unsigned getCallSiteBeginLabel(MCSymbol *BeginLabel) const {
943 assert(hasCallSiteBeginLabel(BeginLabel) &&
945 return CallSiteMap.lookup(BeginLabel);
949 bool hasCallSiteBeginLabel(MCSymbol *BeginLabel) const {
950 return CallSiteMap.count(BeginLabel);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineFunction.cpp674 MCSymbol *BeginLabel, MCSymbol *EndLabel) { in addInvoke() argument
676 LP.BeginLabels.push_back(BeginLabel); in addInvoke()
761 MCSymbol *BeginLabel = LandingPad.BeginLabels[j]; in tidyLandingPads() local
763 if ((BeginLabel->isDefined() || (LPMap && (*LPMap)[BeginLabel] != 0)) && in tidyLandingPads()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp7081 MCSymbol *BeginLabel = nullptr; in lowerInvokable() local
7086 BeginLabel = MMI.getContext().createTempSymbol(); in lowerInvokable()
7092 MF.setCallSiteBeginLabel(BeginLabel, CallSiteIndex); in lowerInvokable()
7102 DAG.setRoot(DAG.getEHLabel(getCurSDLoc(), getControlRoot(), BeginLabel)); in lowerInvokable()
7140 BeginLabel, EndLabel); in lowerInvokable()
7142 MF.addInvoke(FuncInfo.MBBMap[EHPadBB], BeginLabel, EndLabel); in lowerInvokable()