Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDebugHandlerBase.cpp255 PrevLabel = Asm->getFunctionBegin(); in beginFunction()
278 if (!PrevLabel) { in beginInstruction()
279 PrevLabel = MMI->getContext().createTempSymbol(); in beginInstruction()
280 Asm->OutStreamer->EmitLabel(PrevLabel); in beginInstruction()
282 I->second = PrevLabel; in beginInstruction()
293 PrevLabel = nullptr; in endInstruction()
310 if (!PrevLabel) { in endInstruction()
311 PrevLabel = MMI->getContext().createTempSymbol(); in endInstruction()
312 Asm->OutStreamer->EmitLabel(PrevLabel); in endInstruction()
314 I->second = PrevLabel; in endInstruction()
H A DDwarfDebug.cpp1473 if (UnknownLocations == Enable || PrevLabel || in beginInstruction()
1577 PrevLabel = nullptr; in endFunctionImpl()
1595 PrevLabel = nullptr; in endFunctionImpl()
1642 PrevLabel = nullptr; in endFunctionImpl()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DDebugHandlerBase.h69 MCSymbol *PrevLabel = nullptr; variable