reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/clang/include/clang/AST/AttrImpl.inc
 1332   auto *A = new (C) AsmLabelAttr(C, *this, getLabel(), isLiteralLabel);
 1345     OS << " asm(\"" << getLabel() << "\")";
 1349     OS << " __asm__(\"" << getLabel() << "\")";
gen/tools/clang/include/clang/AST/AttrTextNodeDump.inc
   96     OS << " \"" << SA->getLabel() << "\"";
gen/tools/clang/include/clang/AST/Attrs.inc
 1785   return getLabel() == Other->getLabel() && getIsLiteralLabel() == Other->getIsLiteralLabel();
 1785   return getLabel() == Other->getLabel() && getIsLiteralLabel() == Other->getIsLiteralLabel();
gen/tools/clang/include/clang/Serialization/AttrPCHWrite.inc
  226     Record.AddString(SA->getLabel());
tools/clang/lib/AST/Mangle.cpp
  127     if (!ALA->getIsLiteralLabel() || ALA->getLabel().startswith("llvm.")) {
  128       Out << ALA->getLabel();
  142     Out << ALA->getLabel();
tools/clang/lib/CodeGen/CGExpr.cpp
 2444   assert(Asm->getLabel().size() < 64-Name.size() &&
 2446   Name.append(Asm->getLabel());
 2451                                               Asm->getLabel());
tools/clang/lib/CodeGen/CGStmt.cpp
 1802   StringRef Register = Attr->getLabel();
tools/clang/lib/CodeGen/CodeGenModule.cpp
 2587       if (Attr && Name == Attr->getLabel())
 2683     Name = Attr->getLabel();
tools/clang/lib/Sema/SemaStmtAsm.cpp
  199         if (Target.isValidGCCRegisterName(Attr->getLabel()))
  200           return Target.getNormalizedGCCRegisterName(Attr->getLabel(), true);
tools/clang/tools/libclang/CIndex.cpp
 4625     return cxstring::createDup(AA->getLabel());