HomeSort by relevance Sort by last modified time
    Searched defs:ArchName (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/Driver/
ToolChain.cpp 162 std::string ArchName = "arm";
167 ArchName = "thumb";
168 Triple.setArchName(ArchName + Suffix.str());
Driver.cpp 435 StringRef ArchName = A->getValue(C.getArgs());
436 ArchNames.insert(ArchName);
    [all...]
Tools.cpp 604 StringRef ArchName =
606 if (ArchName.startswith("v6") || ArchName.startswith("v7"))
631 StringRef ArchName =
633 if (ArchName.startswith("v7"))
771 // Check that ArchName is a known Mips architecture name.
772 static bool checkMipsArchName(StringRef ArchName) {
773 return ArchName == "mips" ||
774 ArchName == "mipsel" ||
775 ArchName == "mips64" |
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 96 ArchName("arch", cl::desc("Target arch to assemble for, "
184 if (!ArchName.empty()) {
187 if (ArchName == it->getName()) {
194 errs() << ProgName << ": error: invalid target '" << ArchName << "'.\n";
200 Triple::ArchType Type = Triple::getArchTypeForLLVMName(ArchName);
  /external/clang/include/clang/Driver/
Action.h 115 const char *ArchName;
120 const char *getArchName() const { return ArchName; }

Completed in 1506 milliseconds