HomeSort by: relevance | last modified time | path
    Searched refs:getLabel (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AddressPool.h 53 MCSymbol *getLabel() { return AddressTableBaseSym; }
WinException.h 78 const MCExpr *getLabel(const MCSymbol *Label);
DwarfDebug.h 243 const DILabel *getLabel() const { return cast<DILabel>(getEntity()); }
246 StringRef getName() const { return getLabel()->getName(); }
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
ByteCodeEmitter.h 50 LabelTy getLabel() { return ++NextLabel; }
ByteCodeStmtGen.cpp 203 LabelTy LabelElse = this->getLabel();
204 LabelTy LabelEnd = this->getLabel();
216 LabelTy LabelEnd = this->getLabel();
EvalEmitter.h 54 LabelTy getLabel();
EvalEmitter.cpp 49 EvalEmitter::LabelTy EvalEmitter::getLabel() { return NextLabel++; }
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFGStmtMap.cpp 67 if (Stmt *Label = B->getLabel())
ProgramPoint.cpp 153 if (const Stmt *Label = E.getDst()->getLabel()) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineOperand.cpp 616 if (MCSymbol *Label = CFI.getLabel())
622 if (MCSymbol *Label = CFI.getLabel())
627 if (MCSymbol *Label = CFI.getLabel())
632 if (MCSymbol *Label = CFI.getLabel())
639 if (MCSymbol *Label = CFI.getLabel())
645 if (MCSymbol *Label = CFI.getLabel())
651 if (MCSymbol *Label = CFI.getLabel())
658 if (MCSymbol *Label = CFI.getLabel())
665 if (MCSymbol *Label = CFI.getLabel())
671 if (MCSymbol *Label = CFI.getLabel())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCCodeView.cpp 300 MCCVLines[Idx].getLabel(),
370 OS.emitAbsoluteSymbolDiff(J->getLabel(), FuncBegin, 4);
484 const MCSection *FirstSec = &Locs.front().getLabel()->getSection();
486 if (&Loc.getLabel()->getSection() != FirstSec) {
535 unsigned Length = computeLabelDiff(Layout, LastLabel, Loc.getLabel());
538 LastLabel = Loc.getLabel();
565 unsigned CodeDelta = computeLabelDiff(Layout, LastLabel, Loc.getLabel());
584 LastLabel = Loc.getLabel();
597 if (&Loc.getLabel()->getSection() == &LastLabel->getSection())
598 LocAfterLength = computeLabelDiff(Layout, LastLabel, Loc.getLabel());
    [all...]
MCPseudoProbe.cpp 53 buildSymbolDiff(MCOS, Label, LastProbe->getLabel());
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCPseudoProbe.h 86 MCSymbol *getLabel() const { return Label; }
MCCodeView.h 51 const MCSymbol *getLabel() const { return Label; }
MCDwarf.h 171 MCSymbol *getLabel() const { return Label; }
352 MCSymbol *getLabel() const {
433 MCSymbol *getLabel() const { return Label; }
587 MCSymbol *getLabel() const { return Label; }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp 318 IndirectJumpTargets.push_back(cast<AddrLabelExpr>(S)->getLabel());
374 AsmJumpTargets.push_back(E->getLabel());
654 if (GS->getLabel()->getStmt()) {
655 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
987 if (GS->getLabel()->isMSAsmLabel()) {
989 << GS->getLabel()->getIdentifier();
990 S.Diag(GS->getLabel()->getLocation(), diag::note_goto_ms_asm_label)
991 << GS->getLabel()->getIdentifier();
AnalysisBasedWarnings.cpp 303 dyn_cast_or_null<CXXCatchStmt>(Succ->getLabel())) {
1075 const Stmt *L = B->getLabel();
1109 const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(P->getLabel());
1110 if (SW && SW->getSubStmt() == B.getLabel() && P->begin() == P->end())
1113 const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel());
1114 if (L && L->getSubStmt() == B.getLabel() && P->begin() == P->end())
1214 if (const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(B.getLabel()))
1281 const Stmt *Label = B->getLabel();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 121 if (const Stmt *label = CB->getLabel())
251 return CB->getLabel() == nullptr // No labels
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
VarBypassDetector.cpp 141 if (const LabelStmt *LS = GS->getLabel()->getStmt())
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph-diff.cpp 300 static std::string getLabel(const GraphDiffRenderer::GraphT::EdgeValueType &E,
318 static std::string getLabel(const GraphDiffRenderer::GraphT::VertexValueType &V,
385 TailId, getLabel(E, EdgeLabel), getColor(E, G, H, EdgeColor),
399 VertexNo[VertexId], getLabel(V, VertexLabel, TruncLen),
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 500 const LabelDecl *getLabel() const {
501 return cast<LabelStmt>((*I)->getLabel())->getDecl();
549 return cast<CaseStmt>((*I)->getLabel());
  /src/external/apache2/llvm/dist/clang/lib/AST/
Mangle.cpp 152 if (!ALA->getIsLiteralLabel() || ALA->getLabel().startswith("llvm.")) {
153 Out << ALA->getLabel();
174 Out << ALA->getLabel();
APValue.cpp 491 ID.AddPointer(getAddrLabelDiffLHS()->getLabel()->getCanonicalDecl());
492 ID.AddPointer(getAddrLabelDiffRHS()->getLabel()->getCanonicalDecl());
857 Out << "&&" << getAddrLabelDiffLHS()->getLabel()->getName();
859 Out << "&&" << getAddrLabelDiffRHS()->getLabel()->getName();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 251 MDNode *getLabel() const { return Label; }
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SVals.cpp 363 os << "&&" << castAs<loc::GotoLabel>().getLabel()->getName();

Completed in 71 milliseconds

1 2 3