Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp343 PrevLabel = Asm->getFunctionBegin(); in beginFunction()
366 if (!PrevLabel) { in beginInstruction()
367 PrevLabel = MMI->getContext().createTempSymbol(); in beginInstruction()
368 Asm->OutStreamer->emitLabel(PrevLabel); in beginInstruction()
370 I->second = PrevLabel; in beginInstruction()
381 PrevLabel = nullptr; in endInstruction()
399 PrevLabel = CurMI->getParent()->getEndSymbol(); in endInstruction()
400 } else if (!PrevLabel) { in endInstruction()
401 PrevLabel = MMI->getContext().createTempSymbol(); in endInstruction()
402 Asm->OutStreamer->emitLabel(PrevLabel); in endInstruction()
[all …]
H A DDwarfDebug.cpp2078 if (UnknownLocations == Enable || PrevLabel || in beginInstruction()
2244 PrevLabel = nullptr; in endFunctionImpl()
2264 PrevLabel = nullptr; in endFunctionImpl()
2311 PrevLabel = nullptr; in endFunctionImpl()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DDebugHandlerBase.h68 MCSymbol *PrevLabel = nullptr; variable