Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/WindowsDriver/
H A DMSVCPaths.h57 llvm::Triple::ArchType TargetArch,
63 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.h81 llvm::Triple::ArchType TargetArch) const;
H A DGnu.cpp1530 llvm::Triple::ArchType TargetArch = TargetTriple.getArch(); in findMIPSMultilibs() local
1555 addMultilibFlag(isMipsEL(TargetArch), "-EL", Flags); in findMIPSMultilibs()
1556 addMultilibFlag(!isMipsEL(TargetArch), "-EB", Flags); in findMIPSMultilibs()
2866 llvm::Triple::ArchType TargetArch = TargetTriple.getArch(); in ScanGCCForMultilibs() local
2872 if (isArmOrThumbArch(TargetArch) && TargetTriple.isAndroid()) { in ScanGCCForMultilibs()
2882 } else if (isMSP430(TargetArch)) { in ScanGCCForMultilibs()
2884 } else if (TargetArch == llvm::Triple::avr) { in ScanGCCForMultilibs()
H A DMSVC.cpp530 llvm::Triple::ArchType TargetArch) const { in getSubDirectoryPath()
531 return llvm::getSubDirectoryPath(Type, VSLayout, VCToolChainPath, TargetArch, in getSubDirectoryPath()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h69 TargetArch,
70 TargetArch, global() enumerator
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttr.td444 class TargetArch<list<string> arches> : TargetSpec {
447 def TargetARM : TargetArch<["arm", "thumb", "armeb", "thumbeb"]>;
448 def TargetAArch64 : TargetArch<["aarch64", "aarch64_be", "aarch64_32"]>;
449 def TargetAnyArm : TargetArch<!listconcat(TargetARM.Arches, TargetAArch64.Arches)>;
450 def TargetAVR : TargetArch<["avr"]>;
451 def TargetBPF : TargetArch<["bpfel", "bpfeb"]>;
452 def TargetLoongArch : TargetArch<["loongarch32", "loongarch64"]>;
453 def TargetMips32 : TargetArch<["mips", "mipsel"]>;
454 def TargetAnyMips : TargetArch<["mips", "mipsel", "mips64", "mips64el"]>;
455 def TargetMSP430 : TargetArch<["msp430"]>;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp165 Definition("arch", EntryType::TargetArch)};
324 ENUM_TO_CSTR(TargetArch); in TypeToCString()
1459 case Entry::Type::TargetArch: in Format()