Home
last modified time | relevance | path

Searched refs:PrevLabel (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp356 PrevLabel = Asm->getFunctionBegin(); in beginFunction()
379 if (!PrevLabel) { in beginInstruction()
380 PrevLabel = MMI->getContext().createTempSymbol(); in beginInstruction()
381 Asm->OutStreamer->emitLabel(PrevLabel); in beginInstruction()
383 I->second = PrevLabel; in beginInstruction()
394 PrevLabel = nullptr; in endInstruction()
412 PrevLabel = CurMI->getParent()->getEndSymbol(); in endInstruction()
413 } else if (!PrevLabel) { in endInstruction()
414 PrevLabel = MMI->getContext().createTempSymbol(); in endInstruction()
415 Asm->OutStreamer->emitLabel(PrevLabel); in endInstruction()
[all …]
H A DDwarfDebug.cpp2146 if (UnknownLocations == Enable || PrevLabel || in beginInstruction()
2716 PrevLabel = nullptr; in endFunctionImpl()
2739 PrevLabel = nullptr; in endFunctionImpl()
2791 PrevLabel = nullptr; in endFunctionImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDebugHandlerBase.h68 MCSymbol *PrevLabel = nullptr; variable