Home
last modified time | relevance | path

Searched refs:getLabel (Results 1 – 25 of 75) sorted by relevance

123

/openbsd/gnu/llvm/clang/lib/AST/Interp/
H A DByteCodeStmtGen.cpp274 LabelTy LabelElse = this->getLabel(); in visitIfStmt()
275 LabelTy LabelEnd = this->getLabel(); in visitIfStmt()
287 LabelTy LabelEnd = this->getLabel(); in visitIfStmt()
303 LabelTy CondLabel = this->getLabel(); // Label before the condition. in visitWhileStmt()
304 LabelTy EndLabel = this->getLabel(); // Label after the loop. in visitWhileStmt()
328 LabelTy StartLabel = this->getLabel(); in visitDoStmt()
329 LabelTy EndLabel = this->getLabel(); in visitDoStmt()
330 LabelTy CondLabel = this->getLabel(); in visitDoStmt()
353 LabelTy EndLabel = this->getLabel(); in visitForStmt()
354 LabelTy CondLabel = this->getLabel(); in visitForStmt()
[all …]
H A DByteCodeEmitter.h50 LabelTy getLabel() { return ++NextLabel; } in getLabel() function
H A DEvalEmitter.h53 LabelTy getLabel();
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DMachineOperand.cpp651 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
657 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
662 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
667 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
674 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
680 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
686 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
693 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
701 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
708 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
[all …]
/openbsd/gnu/llvm/llvm/lib/MC/
H A DMCCodeView.cpp301 MCCVLines[Idx].getLabel(), in getFunctionLineEntries()
371 OS.emitAbsoluteSymbolDiff(J->getLabel(), FuncBegin, 4); in emitLineTableForFunction()
485 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); in encodeInlineLineTable()
487 if (&Loc.getLabel()->getSection() != FirstSec) { in encodeInlineLineTable()
536 unsigned Length = computeLabelDiff(Layout, LastLabel, Loc.getLabel()); in encodeInlineLineTable()
539 LastLabel = Loc.getLabel(); in encodeInlineLineTable()
566 unsigned CodeDelta = computeLabelDiff(Layout, LastLabel, Loc.getLabel()); in encodeInlineLineTable()
585 LastLabel = Loc.getLabel(); in encodeInlineLineTable()
598 if (&Loc.getLabel()->getSection() == &LastLabel->getSection()) in encodeInlineLineTable()
599 LocAfterLength = computeLabelDiff(Layout, LastLabel, Loc.getLabel()); in encodeInlineLineTable()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DJumpDiagnostics.cpp318 IndirectJumpTargets.push_back(cast<AddrLabelExpr>(S)->getLabel()); in BuildScopeInformation()
374 AsmJumpTargets.push_back(E->getLabel()); in BuildScopeInformation()
659 if (GS->getLabel()->getStmt()) { in VerifyJumps()
660 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(), in VerifyJumps()
992 if (GS->getLabel()->isMSAsmLabel()) { in CheckGotoStmt()
994 << GS->getLabel()->getIdentifier(); in CheckGotoStmt()
995 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label) in CheckGotoStmt()
996 << GS->getLabel()->getIdentifier(); in CheckGotoStmt()
H A DAnalysisBasedWarnings.cpp307 dyn_cast_or_null<CXXCatchStmt>(Succ->getLabel())) { in throwEscapes()
1078 const Stmt *L = B->getLabel(); in fillReachableBlocks()
1110 const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(P->getLabel()); in checkFallThroughIntoBlock()
1111 if (SW && SW->getSubStmt() == B.getLabel() && P->begin() == P->end()) in checkFallThroughIntoBlock()
1114 const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel()); in checkFallThroughIntoBlock()
1115 if (L && L->getSubStmt() == B.getLabel() && P->begin() == P->end()) in checkFallThroughIntoBlock()
1210 if (const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(B.getLabel())) in getLastStmt()
1277 const Stmt *Label = B->getLabel(); in DiagnoseSwitchLabelsFallthrough()
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.h53 MCSymbol *getLabel() { return AddressTableBaseSym; } in getLabel() function
H A DWinException.h82 const MCExpr *getLabel(const MCSymbol *Label);
H A DWinException.cpp319 const MCExpr *WinException::getLabel(const MCSymbol *Label) { in getLabel() function in WinException
325 return MCBinaryExpr::createAdd(getLabel(Label), in getLabelPlusOne()
654 OS.emitValue(getLabel(BeginLabel), 4); in emitSEHActionsForRange()
952 ? getLabel(ChangeLabel) in computeIP2StateTable()
H A DDwarfDebug.h244 const DILabel *getLabel() const { return cast<DILabel>(getEntity()); } in getLabel() function
247 StringRef getName() const { return getLabel()->getName(); } in getName()
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp122 if (const Stmt *label = CB->getLabel()) in checkEndAnalysis()
252 return CB->getLabel() == nullptr // No labels in isEmptyCFGBlock()
/openbsd/gnu/llvm/llvm/include/llvm/MC/
H A DMCDwarf.h196 MCSymbol *getLabel() const { return Label; } in getLabel() function
397 MCSymbol *getLabel() const { in getLabel() function
471 MCSymbol *getLabel() const { return Label; } in getLabel() function
643 MCSymbol *getLabel() const { return Label; } in getLabel() function
H A DMCCodeView.h58 const MCSymbol *getLabel() const { return Label; } in getLabel() function
H A DMCPseudoProbe.h165 MCSymbol *getLabel() const { return Label; } in getLabel() function
/openbsd/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-graph-diff.cpp301 static std::string getLabel(const GraphDiffRenderer::GraphT::EdgeValueType &E, in getLabel() function
319 static std::string getLabel(const GraphDiffRenderer::GraphT::VertexValueType &V, in getLabel() function
386 TailId, getLabel(E, EdgeLabel), getColor(E, G, H, EdgeColor), in exportGraphAsDOT()
400 VertexNo[VertexId], getLabel(V, VertexLabel, TruncLen), in exportGraphAsDOT()
/openbsd/gnu/llvm/clang/lib/Analysis/
H A DCFGStmtMap.cpp68 if (Stmt *Label = B->getLabel()) in Accumulate()
H A DProgramPoint.cpp153 if (const Stmt *Label = E.getDst()->getLabel()) { in printJson()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DStmtDataCollectors.td142 addData(S->getLabel()->getName());
163 addData(S->getLabel()->getName());
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h513 const LabelDecl *getLabel() const { in getLabel() function
514 return cast<LabelStmt>((*I)->getLabel())->getDecl(); in getLabel()
562 return cast<CaseStmt>((*I)->getLabel()); in getCase()
/openbsd/gnu/llvm/clang/lib/AST/
H A DMangle.cpp150 if (!ALA->getIsLiteralLabel() || ALA->getLabel().startswith("llvm.")) { in mangleName()
151 Out << ALA->getLabel(); in mangleName()
172 Out << ALA->getLabel(); in mangleName()
H A DAPValue.cpp491 ID.AddPointer(getAddrLabelDiffLHS()->getLabel()->getCanonicalDecl()); in Profile()
492 ID.AddPointer(getAddrLabelDiffRHS()->getLabel()->getCanonicalDecl()); in Profile()
928 Out << "&&" << getAddrLabelDiffLHS()->getLabel()->getName(); in printPretty()
930 Out << "&&" << getAddrLabelDiffRHS()->getLabel()->getName(); in printPretty()
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DVarBypassDetector.cpp141 if (const LabelStmt *LS = GS->getLabel()->getStmt()) in Detect()
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h252 MDNode *getLabel() const { return Label; } in getLabel() function
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DSVals.cpp369 os << "&&" << castAs<loc::GotoLabel>().getLabel()->getName(); in dumpToStream()

123