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/ |
D | EHStreamer.cpp | 209 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 …]
|
D | AddressPool.cpp | 29 MCSymbol *BeginLabel = Asm.createTempSymbol(Prefix + "start"); in emitHeader() local 33 Asm.EmitLabelDifference(EndLabel, BeginLabel, in emitHeader() 35 Asm.OutStreamer->EmitLabel(BeginLabel); in emitHeader()
|
D | EHStreamer.h | 63 MCSymbol *BeginLabel; // Null indicates the start of the function. member
|
D | WinException.h | 52 const MCSymbol *BeginLabel,
|
D | CodeViewDebug.cpp | 1103 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()
|
D | WinException.cpp | 616 const MCSymbol *BeginLabel, in emitSEHActionsForRange() argument 626 assert(BeginLabel && EndLabel); in emitSEHActionsForRange() 644 OS.EmitValue(getLabel(BeginLabel), 4); in emitSEHActionsForRange()
|
D | DwarfUnit.cpp | 1624 MCSymbol *BeginLabel = Asm->createTempSymbol(Prefix + "start"); in emitCommonHeader() local 1626 Asm->EmitLabelDifference(EndLabel, BeginLabel, 4); in emitCommonHeader() 1627 Asm->OutStreamer->EmitLabel(BeginLabel); in emitCommonHeader()
|
D | DwarfDebug.cpp | 2124 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/ |
D | MachineFunction.h | 875 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/ |
D | MachineFunction.cpp | 674 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/ |
D | SelectionDAGBuilder.cpp | 7081 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()
|