| /freebsd-10-stable/contrib/llvm/include/llvm/ADT/ |
| D | Triple.h | 46 enum ArchType { enum 133 ArchType Arch; 172 ArchType getArch() const { return Arch; } in getArch() 364 void setArch(ArchType Kind); 430 static const char *getArchTypeName(ArchType Kind); 438 static const char *getArchTypePrefix(ArchType Kind); 456 static ArchType getArchTypeForLLVMName(StringRef Str);
|
| /freebsd-10-stable/contrib/llvm/lib/Support/ |
| D | Triple.cpp | 18 const char *Triple::getArchTypeName(ArchType Kind) { in getArchTypeName() 53 const char *Triple::getArchTypePrefix(ArchType Kind) { in getArchTypePrefix() 161 Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) { in getArchTypeForLLVMName() 162 return StringSwitch<Triple::ArchType>(Name) in getArchTypeForLLVMName() 219 static Triple::ArchType parseArch(StringRef ArchName) { in parseArch() 220 return StringSwitch<Triple::ArchType>(ArchName) in parseArch() 362 ArchType Arch = UnknownArch; in normalize() 620 void Triple::setArch(ArchType Kind) { in setArch() 668 static unsigned getArchPointerBitWidth(llvm::Triple::ArchType Arch) { in getArchPointerBitWidth()
|
| D | TargetRegistry.cpp | 49 Triple::ArchType Type = Triple::getArchTypeForLLVMName(ArchName); in lookupTarget()
|
| /freebsd-10-stable/contrib/llvm/lib/Object/ |
| D | MachOUniversal.cpp | 116 static bool getCTMForArch(Triple::ArchType Arch, MachO::CPUType &CTM) { in getCTMForArch() 129 MachOUniversalBinary::getObjectForArch(Triple::ArchType Arch, in getObjectForArch()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| D | StopInfoMachException.cpp | 39 …const llvm::Triple::ArchType cpu = target ? target->GetArchitecture().GetMachine() : llvm::Triple:… in GetDescription() 283 …const llvm::Triple::ArchType cpu = target ? target->GetArchitecture().GetMachine() : llvm::Triple:… in CreateStopReasonWithMachException()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/Object/ |
| D | MachOUniversal.h | 95 error_code getObjectForArch(Triple::ArchType Arch,
|
| D | MachO.h | 200 static Triple::ArchType getArch(uint32_t CPUType);
|
| /freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/ |
| D | TargetSelect.cpp | 69 Triple::ArchType Type = Triple::getArchTypeForLLVMName(MArch); in selectTarget()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/ |
| D | ArchSpec.h | 212 llvm::Triple::ArchType
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/ |
| D | ObjCRuntime.h | 93 bool isLegacyDispatchDefaultForArch(llvm::Triple::ArchType Arch) { in isLegacyDispatchDefaultForArch()
|
| /freebsd-10-stable/contrib/llvm/patches/ |
| D | patch-r259053-gcc-installation-detector.diff | 46 llvm::Triple::ArchType Arch = Triple.getArch();
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/ |
| D | ToolChain.h | 111 llvm::Triple::ArchType getArch() const { return Triple.getArch(); } in getArch()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ |
| D | ToolChains.cpp | 628 llvm::Triple::ArchType XarchArch = in TranslateArgs() 1032 llvm::Triple::ArchType TargetArch = TargetTriple.getArch(); in init() 1346 static bool isMipsArch(llvm::Triple::ArchType Arch) { in isMipsArch() 1400 llvm::Triple::ArchType TargetArch, in findTargetBiarchSuffix() 1421 std::string &Suffix, llvm::Triple::ArchType TargetArch, StringRef Path, in findMIPSABIDirSuffix() 1512 llvm::Triple::ArchType TargetArch, const ArgList &Args, in ScanLibDirForGCCTriple() 2240 static Distro DetectDistro(llvm::Triple::ArchType Arch) { in DetectDistro() 2408 llvm::Triple::ArchType Arch = Triple.getArch(); in Linux()
|
| D | ToolChains.h | 143 void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch, 150 llvm::Triple::ArchType TargetArch, StringRef Path,
|
| D | Tools.h | 229 llvm::Triple::ArchType getArchTypeForDarwinArchName(StringRef Str);
|
| /freebsd-10-stable/contrib/llvm/tools/llvm-readobj/ |
| D | llvm-readobj.cpp | 205 << Triple::getArchTypeName((llvm::Triple::ArchType)Obj->getArch()) in dumpObject()
|
| /freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| D | RuntimeDyldImpl.h | 187 Triple::ArchType Arch;
|
| D | RuntimeDyld.cpp | 93 Arch = (Triple::ArchType)obj->getArch(); in loadObject()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/ |
| D | ArchSpec.cpp | 42 llvm::Triple::ArchType machine; 475 llvm::Triple::ArchType
|
| /freebsd-10-stable/contrib/llvm/tools/llvm-objdump/ |
| D | MachODump.cpp | 56 TT.setArch(Triple::ArchType(MachOObj->getArch())); in GetTarget()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/ |
| D | InitHeaderSearch.cpp | 190 llvm::Triple::ArchType arch = triple.getArch(); in AddGnuCPlusPlusIncludePaths()
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/ |
| D | DisassemblerLLVMC.cpp | 174 const llvm::Triple::ArchType machine = arch.GetMachine(); in Decode()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/Support/ |
| D | TargetRegistry.h | 830 template<Triple::ArchType TargetArchType = Triple::UnknownArch,
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/ |
| D | UnwindAssembly-x86.cpp | 930 const llvm::Triple::ArchType cpu = arch.GetMachine (); in CreateInstance()
|
| /freebsd-10-stable/contrib/llvm/lib/MC/ |
| D | MCObjectFileInfo.cpp | 726 Triple::ArchType Arch = T.getArch(); in InitMCObjectFileInfo()
|