/openbsd/gnu/llvm/clang/lib/Driver/ToolChains/Arch/ |
H A D | SystemZ.cpp | 21 systemz::FloatABI systemz::getSystemZFloatABI(const Driver &D, in getSystemZFloatABI() 24 systemz::FloatABI ABI = systemz::FloatABI::Hard; in getSystemZFloatABI() 32 ABI = systemz::FloatABI::Soft; in getSystemZFloatABI() 37 std::string systemz::getSystemZTargetCPU(const ArgList &Args) { in getSystemZTargetCPU() 54 void systemz::getSystemZTargetFeatures(const Driver &D, const ArgList &Args, in getSystemZTargetFeatures() 71 systemz::FloatABI FloatABI = systemz::getSystemZFloatABI(D, Args); in getSystemZTargetFeatures() 72 if (FloatABI == systemz::FloatABI::Soft) in getSystemZTargetFeatures()
|
H A D | SystemZ.h | 21 namespace systemz {
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextLinux_s390x.cpp | 22 case llvm::Triple::systemz: in GetRegisterInfoPtr() 32 case llvm::Triple::systemz: in GetRegisterInfoCount() 42 case llvm::Triple::systemz: in GetUserRegisterInfoCount()
|
H A D | RegisterContextPOSIX_s390x.cpp | 87 case llvm::Triple::systemz: in RegisterContextPOSIX_s390x() 155 case llvm::Triple::systemz: in GetRegisterSet()
|
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/TargetInfo/ |
H A D | SystemZTargetInfo.cpp | 20 RegisterTarget<Triple::systemz, /*HasJIT=*/true> X( in LLVMInitializeSystemZTargetInfo()
|
/openbsd/gnu/llvm/clang/lib/Headers/ |
H A D | module.modulemap | 137 explicit module systemz { 138 requires systemz
|
H A D | CMakeLists.txt | 404 "systemz-resource-headers" 428 add_header_target("systemz-resource-headers" "${systemz_files}") 554 COMPONENT systemz-resource-headers) 653 add_llvm_install_targets(install-systemz-resource-headers 654 DEPENDS systemz-resource-headers 655 COMPONENT systemz-resource-headers)
|
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.h | 76 else if (Arch == Triple::systemz) in getMaxStubSize() 83 if (Arch == Triple::systemz) in getStubAlignment()
|
H A D | RuntimeDyldELF.cpp | 1068 case Triple::systemz: in resolveRelocation() 1708 } else if (Arch == Triple::systemz && in processRelocationRef() 2219 case Triple::systemz: in getGOTEntrySize()
|
/openbsd/gnu/llvm/llvm/lib/TargetParser/ |
H A D | Triple.cpp | 75 case systemz: return "s390x"; in getArchTypeName() 134 case systemz: return "s390"; in getArchTypePrefix() 346 .Case("s390x", systemz) in getArchTypeForLLVMName() 347 .Case("systemz", systemz) in getArchTypeForLLVMName() 489 .Cases("s390x", "systemz", Triple::systemz) in parseArch() 866 case Triple::systemz: in getDefaultFormat() 1460 case llvm::Triple::systemz: in getArchPointerBitWidth() 1490 case Triple::systemz: in get32BitArchVariant() 1603 case Triple::systemz: in get64BitArchVariant() 1717 case Triple::systemz: in getLittleEndianArchVariant()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/elf-core/ |
H A D | ThreadElfCore.cpp | 131 case llvm::Triple::systemz: in CreateRegisterContextForFrame() 202 case llvm::Triple::systemz: in CreateRegisterContextForFrame()
|
/openbsd/gnu/llvm/clang/lib/Driver/ToolChains/ |
H A D | Linux.cpp | 134 case llvm::Triple::systemz: in getMultiarchTriple() 548 case llvm::Triple::systemz: in getDynamicLinker() 754 const bool IsSystemZ = getTriple().getArch() == llvm::Triple::systemz; in getSupportedSanitizers()
|
H A D | CommonArgs.cpp | 448 case llvm::Triple::systemz: in getCPUName() 449 return systemz::getSystemZTargetCPU(Args); in getCPUName() 495 case llvm::Triple::systemz: in getTargetFeatures() 496 systemz::getSystemZTargetFeatures(D, Args, Features); in getTargetFeatures()
|
H A D | Gnu.cpp | 301 case llvm::Triple::systemz: in getLDMOption() 941 case llvm::Triple::systemz: { in ConstructJob() 944 std::string CPUName = systemz::getSystemZTargetCPU(Args); in ConstructJob() 2609 case llvm::Triple::systemz: in CollectLibDirsAndTriples() 2923 case llvm::Triple::systemz: in IsIntegratedAssemblerDefault()
|
H A D | Clang.cpp | 482 case llvm::Triple::systemz: in useFramePointerForTargetByDefault() 1413 case llvm::Triple::systemz: in isSignedCharDefault() 1729 case llvm::Triple::systemz: in RenderTargetOptions() 2161 systemz::FloatABI FloatABI = in AddSystemZTargetArgs() 2162 systemz::getSystemZFloatABI(getToolChain().getDriver(), Args); in AddSystemZTargetArgs() 2163 bool HasSoftFloat = (FloatABI == systemz::FloatABI::Soft); in AddSystemZTargetArgs() 6279 if (Arch == llvm::Triple::systemz || TC.getTriple().isX86()) in ConstructJob() 6286 if (Arch == llvm::Triple::systemz) in ConstructJob() 6293 if (Arch == llvm::Triple::systemz) in ConstructJob()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
H A D | NativeRegisterContextLinux_s390x.cpp | 120 case llvm::Triple::systemz: in NativeRegisterContextLinux_s390x() 163 case llvm::Triple::systemz: in GetRegisterSet()
|
/openbsd/gnu/llvm/llvm/include/llvm/TargetParser/ |
H A D | Triple.h | 80 systemz, // SystemZ: s390x enumerator 915 return getArch() == Triple::systemz; in isSystemZ()
|
/openbsd/gnu/llvm/lldb/source/Host/common/ |
H A D | NativeProcessProtocol.cpp | 531 case llvm::Triple::systemz: in GetSoftwareBreakpointTrapOpcode() 561 case llvm::Triple::systemz: in GetSoftwareBreakpointPCOffset()
|
H A D | HostInfoBase.cpp | 352 case llvm::Triple::systemz: in ComputeHostArchitectureSupport()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Platform/Linux/ |
H A D | PlatformLinux.cpp | 126 llvm::Triple::mipsel, llvm::Triple::systemz}, in PlatformLinux()
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | TargetLibraryInfo.h | 407 T.getArch() == Triple::systemz) { in initExtensionsForTriple()
|
/openbsd/gnu/llvm/lldb/source/Plugins/ABI/SystemZ/ |
H A D | ABISysV_s390x.cpp | 190 if (arch.GetTriple().getArch() == llvm::Triple::systemz) { in CreateInstance()
|
/openbsd/gnu/llvm/llvm/lib/Object/ |
H A D | RelocationResolver.cpp | 783 case Triple::systemz: in getRelocationResolver()
|
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | BreakpadRecords.cpp | 76 .Case("s390", Triple::systemz) in stringTo()
|
/openbsd/gnu/llvm/lldb/source/Utility/ |
H A D | ArchSpec.cpp | 191 {eByteOrderBig, 8, 2, 6, llvm::Triple::systemz, 736 case llvm::Triple::systemz: in CharIsSignedByDefault()
|