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

References

gen/tools/clang/include/clang/AST/Attrs.inc
13720                Architecture == Other.Architecture && Features == Other.Features;
13720                Architecture == Other.Architecture && Features == Other.Features;
13791           if (!Ret.Architecture.empty())
13794             Ret.Architecture = Feature.split("=").second.trim();
tools/clang/lib/CodeGen/CodeGenModule.cpp
  972   if (!Info.Architecture.empty()) {
  974     Out << "arch_" << Info.Architecture;
 1682       if (ParsedAttr.Architecture != "" &&
 1683           getTarget().isValidCPUName(ParsedAttr.Architecture))
 1684         TargetCPU = ParsedAttr.Architecture;
 5893     if (ParsedAttr.Architecture != "" &&
 5894         Target.isValidCPUName(ParsedAttr.Architecture))
 5895       TargetCPU = ParsedAttr.Architecture;
tools/clang/lib/Sema/SemaDecl.cpp
 9672   if (!ParseInfo.Architecture.empty() &&
 9673       !TargetInfo.validateCpuIs(ParseInfo.Architecture)) {
 9675         << Architecture << ParseInfo.Architecture;
tools/clang/lib/Sema/SemaDeclAttr.cpp
 2978   if (!ParsedAttrs.Architecture.empty() &&
 2979       !Context.getTargetInfo().isValidCPUName(ParsedAttrs.Architecture))
 2981            << Unsupported << Architecture << ParsedAttrs.Architecture;