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.cpp352 PrevLabel = Asm->getFunctionBegin(); in beginFunction()
375 if (!PrevLabel) { in beginInstruction()
376 PrevLabel = MMI->getContext().createTempSymbol(); in beginInstruction()
377 Asm->OutStreamer->emitLabel(PrevLabel); in beginInstruction()
379 I->second = PrevLabel; in beginInstruction()
390 PrevLabel = nullptr; in endInstruction()
408 PrevLabel = CurMI->getParent()->getEndSymbol(); in endInstruction()
409 } else if (!PrevLabel) { in endInstruction()
410 PrevLabel = MMI->getContext().createTempSymbol(); in endInstruction()
411 Asm->OutStreamer->emitLabel(PrevLabel); in endInstruction()
[all …]
H A DDwarfDebug.cpp2097 if (UnknownLocations == Enable || PrevLabel || in beginInstruction()
2281 PrevLabel = nullptr; in endFunctionImpl()
2304 PrevLabel = nullptr; in endFunctionImpl()
2353 PrevLabel = nullptr; in endFunctionImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDebugHandlerBase.h72 MCSymbol *PrevLabel = nullptr; variable