Home
last modified time | relevance | path

Searched refs:TargetArch (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/WindowsDriver/
H A DMSVCPaths.h60 llvm::Triple::ArchType TargetArch,
67 llvm::Triple::ArchType TargetArch,
/freebsd/contrib/llvm-project/llvm/lib/WindowsDriver/
H A DMSVCPaths.cpp341 Triple::ArchType TargetArch, in getSubDirectoryPath() argument
347 SubdirName = archToLegacyVCArch(TargetArch); in getSubDirectoryPath()
351 SubdirName = archToWindowsSDKArch(TargetArch); in getSubDirectoryPath()
355 SubdirName = archToDevDivInternalArch(TargetArch); in getSubDirectoryPath()
394 Triple::ArchType TargetArch, vfs::FileSystem &VFS) { in useUniversalCRT() argument
396 SubDirectoryType::Include, VSLayout, VCToolChainPath, TargetArch)); in useUniversalCRT()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DMSVC.h82 llvm::Triple::ArchType TargetArch) const;
H A DGnu.h270 void ScanLibDirForGCCTriple(const llvm::Triple &TargetArch,
H A DGnu.cpp1408 llvm::Triple::ArchType TargetArch = TargetTriple.getArch(); in findMIPSMultilibs() local
1435 addMultilibFlag(isMipsEL(TargetArch), "-EL", Flags); in findMIPSMultilibs()
1436 addMultilibFlag(!isMipsEL(TargetArch), "-EB", Flags); in findMIPSMultilibs()
2757 llvm::Triple::ArchType TargetArch = TargetTriple.getArch(); in ScanGCCForMultilibs() local
2763 if (isArmOrThumbArch(TargetArch) && TargetTriple.isAndroid()) { in ScanGCCForMultilibs()
2773 } else if (isMSP430(TargetArch)) { in ScanGCCForMultilibs()
2775 } else if (TargetArch == llvm::Triple::avr) { in ScanGCCForMultilibs()
H A DMSVC.cpp540 llvm::Triple::ArchType TargetArch) const { in getSubDirectoryPath()
541 return llvm::getSubDirectoryPath(Type, VSLayout, VCToolChainPath, TargetArch, in getSubDirectoryPath()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h69 TargetArch, enumerator
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td465 class TargetArch<list<string> arches> : TargetSpec {
468 def TargetARM : TargetArch<["arm", "thumb", "armeb", "thumbeb"]>;
469 def TargetAArch64 : TargetArch<["aarch64", "aarch64_be", "aarch64_32"]>;
470 def TargetAMDGPU : TargetArch<["amdgcn", "r600"]>;
471 def TargetAnyArm : TargetArch<!listconcat(TargetARM.Arches, TargetAArch64.Arches)>;
472 def TargetAVR : TargetArch<["avr"]>;
473 def TargetBPF : TargetArch<["bpfel", "bpfeb"]>;
474 def TargetLoongArch : TargetArch<["loongarch32", "loongarch64"]>;
475 def TargetMips32 : TargetArch<["mips", "mipsel"]>;
476 def TargetAnyMips : TargetArch<["mips", "mipsel", "mips64", "mips64el"]>;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp177 Definition("arch", EntryType::TargetArch),
368 ENUM_TO_CSTR(TargetArch); in TypeToCString()
1595 case Entry::Type::TargetArch: in Format()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp925 static llvm::Triple getSYCLDeviceTriple(StringRef TargetArch) { in getSYCLDeviceTriple() argument
928 if (llvm::is_contained(SYCLAlias, TargetArch)) { in getSYCLDeviceTriple()
930 TargetTriple.setArchName(TargetArch); in getSYCLDeviceTriple()
935 return llvm::Triple(TargetArch); in getSYCLDeviceTriple()