Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp344 PrevLabel = Asm->getFunctionBegin(); in beginFunction()
367 if (!PrevLabel) { in beginInstruction()
368 PrevLabel = MMI->getContext().createTempSymbol(); in beginInstruction()
369 Asm->OutStreamer->emitLabel(PrevLabel); in beginInstruction()
371 I->second = PrevLabel; in beginInstruction()
382 PrevLabel = nullptr; in endInstruction()
399 if (!PrevLabel) { in endInstruction()
400 PrevLabel = MMI->getContext().createTempSymbol(); in endInstruction()
401 Asm->OutStreamer->emitLabel(PrevLabel); in endInstruction()
403 I->second = PrevLabel; in endInstruction()
[all …]
H A DDwarfDebug.cpp1997 if (UnknownLocations == Enable || PrevLabel || in beginInstruction()
2136 PrevLabel = nullptr; in endFunctionImpl()
2156 PrevLabel = nullptr; in endFunctionImpl()
2203 PrevLabel = nullptr; in endFunctionImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DDebugHandlerBase.h68 MCSymbol *PrevLabel = nullptr; variable