Home
last modified time | relevance | path

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

1234

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp678 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
684 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
689 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
694 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
701 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
707 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
713 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
720 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
728 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
735 if (MCSymbol *Label = CFI.getLabel()) in printCFI()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp289 FilteredLines.push_back(MCCVLoc(MCCVLines[Idx].getLabel(), FuncId, in getFunctionLineEntries()
377 OS.emitAbsoluteSymbolDiff(J->getLabel(), FuncBegin, 4); in emitLineTableForFunction()
486 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); in encodeInlineLineTable()
488 if (&Loc.getLabel()->getSection() != FirstSec) { in encodeInlineLineTable()
538 unsigned Length = computeLabelDiff(Asm, LastLabel, Loc.getLabel()); in encodeInlineLineTable()
541 LastLabel = Loc.getLabel(); in encodeInlineLineTable()
568 unsigned CodeDelta = computeLabelDiff(Asm, LastLabel, Loc.getLabel()); in encodeInlineLineTable()
587 LastLabel = Loc.getLabel(); in encodeInlineLineTable()
600 if (&Loc.getLabel()->getSection() == &LastLabel->getSection()) in encodeInlineLineTable()
601 LocAfterLength = computeLabelDiff(Asm, LastLabel, Loc.getLabel()); in encodeInlineLineTable()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp317 IndirectJumpTargets.push_back(cast<AddrLabelExpr>(S)->getLabel()); in BuildScopeInformation()
684 if (GS->getLabel()->getStmt()) { in VerifyJumps()
685 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(), in VerifyJumps()
703 LabelDecl *LD = L->getLabel(); in VerifyJumps()
1041 if (GS->getLabel()->isMSAsmLabel()) { in CheckGotoStmt()
1043 << GS->getLabel()->getIdentifier(); in CheckGotoStmt()
1044 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label) in CheckGotoStmt()
1045 << GS->getLabel()->getIdentifier(); in CheckGotoStmt()
H A DAnalysisBasedWarnings.cpp331 dyn_cast_or_null<CXXCatchStmt>(Succ->getLabel())) { in throwEscapes()
1244 const Stmt *L = B->getLabel(); in fillReachableBlocks()
1277 const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(P->getLabel()); in checkFallThroughIntoBlock()
1278 if (SW && SW->getSubStmt() == B.getLabel() && P->begin() == P->end()) in checkFallThroughIntoBlock()
1281 const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel()); in checkFallThroughIntoBlock()
1282 if (L && L->getSubStmt() == B.getLabel() && P->begin() == P->end()) in checkFallThroughIntoBlock()
1374 if (const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(B.getLabel())) in getLastStmt()
1441 const Stmt *Label = B->getLabel(); in DiagnoseSwitchLabelsFallthrough()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnreachableCodeChecker.cpp120 if (const Stmt *label = CB->getLabel()) in checkEndAnalysis()
248 return CB->getLabel() == nullptr // No labels in isEmptyCFGBlock()
/freebsd/contrib/llvm-project/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.cpp321 const MCExpr *WinException::getLabel(const MCSymbol *Label) { in getLabel() function in WinException
327 return MCBinaryExpr::createAdd(getLabel(Label), in getLabelPlusOne()
656 OS.emitValue(getLabel(BeginLabel), 4); in emitSEHActionsForRange()
958 ? getLabel(ChangeLabel) in computeIP2StateTable()
H A DDwarfDebug.h299 const DILabel *getLabel() const { return cast<DILabel>(getEntity()); } in getLabel() function
302 StringRef getName() const { return getLabel()->getName(); } in getName()
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-graph-diff.cpp300 static std::string getLabel(const GraphDiffRenderer::GraphT::EdgeValueType &E, in getLabel() function
318 static std::string getLabel(const GraphDiffRenderer::GraphT::VertexValueType &V, in getLabel() function
385 TailId, getLabel(E, EdgeLabel), getColor(E, G, H, EdgeColor), in exportGraphAsDOT()
399 VertexNo[VertexId], getLabel(V, VertexLabel, TruncLen), in exportGraphAsDOT()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFGStmtMap.cpp68 if (Stmt *Label = B->getLabel()) in Accumulate()
H A DProgramPoint.cpp272 if (const Stmt *Label = E.getDst()->getLabel()) { in printJson()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtDataCollectors.td141 addData(S->getLabel()->getName());
162 addData(S->getLabel()->getName());
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h204 MCSymbol *getLabel() const { return Label; } in getLabel() function
426 MCSymbol *getLabel() const { in getLabel() function
501 MCSymbol *getLabel() const { return Label; } in getLabel() function
721 MCSymbol *getLabel() const { return Label; } in getLabel() function
H A DMCCodeView.h59 const MCSymbol *getLabel() const { return Label; } in getLabel() function
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h491 const LabelDecl *getLabel() const { in getLabel() function
492 return cast<LabelStmt>((*I)->getLabel())->getDecl(); in getLabel()
540 return cast<CaseStmt>((*I)->getLabel()); in getCase()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DCompiler.cpp1074 LabelTy LabelTrue = this->getLabel(); in VisitLogicalBinOp()
1075 LabelTy LabelEnd = this->getLabel(); in VisitLogicalBinOp()
1096 LabelTy LabelFalse = this->getLabel(); in VisitLogicalBinOp()
1097 LabelTy LabelEnd = this->getLabel(); in VisitLogicalBinOp()
2421 LabelTy LabelEnd = this->getLabel(); // Label after the operator. in VisitAbstractConditionalOperator()
2422 LabelTy LabelFalse = this->getLabel(); // Label for the false expr. in VisitAbstractConditionalOperator()
3578 LabelTy EndLabel = this->getLabel(); in VisitCXXNewExpr()
3579 LabelTy StartLabel = this->getLabel(); in VisitCXXNewExpr()
3866 allocateLocalPrimitive(E->getLabel(), PT_Ptr, /*IsConst=*/true); in VisitAddrLabelExpr()
4862 LabelTy EndLabel = this->getLabel(); in VisitBuiltinCallExpr()
[all …]
H A DByteCodeEmitter.h44 LabelTy getLabel() { return ++NextLabel; } in getLabel() function
H A DEvalEmitter.h55 LabelTy getLabel();
H A DEvalEmitter.cpp95 EvalEmitter::LabelTy EvalEmitter::getLabel() { return NextLabel++; } in getLabel() function in EvalEmitter
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDebugProgramInstruction.cpp125 return cast<DbgLabelRecord>(this)->getLabel() == in isIdenticalToWhenDefined()
126 cast<DbgLabelRecord>(R).getLabel(); in isIdenticalToWhenDefined()
400 return new DbgLabelRecord(getLabel(), getDebugLoc()); in clone()
465 MetadataAsValue::get(getDebugLoc()->getContext(), getLabel())}; in createDebugIntrinsic()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp166 if (!ALA->getIsLiteralLabel() || ALA->getLabel().starts_with("llvm.")) { in mangleName()
167 Out << ALA->getLabel(); in mangleName()
188 Out << ALA->getLabel(); in mangleName()
H A DAPValue.cpp503 ID.AddPointer(getAddrLabelDiffLHS()->getLabel()->getCanonicalDecl()); in Profile()
504 ID.AddPointer(getAddrLabelDiffRHS()->getLabel()->getCanonicalDecl()); in Profile()
948 Out << "&&" << getAddrLabelDiffLHS()->getLabel()->getName(); in printPretty()
950 Out << "&&" << getAddrLabelDiffRHS()->getLabel()->getName(); in printPretty()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp146 if (const LabelStmt *LS = GS->getLabel()->getStmt()) in Detect()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h252 MDNode *getLabel() const { return Label; } in getLabel() function

1234