Home
last modified time | relevance | path

Searched refs:PlatformType (Results 1 – 16 of 16) sorted by relevance

/freebsd-src/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DPlatform.h22 using PlatformSet = SmallSet<PlatformType, 3>;
23 using PlatformVersionSet = SmallSet<std::pair<PlatformType, VersionTuple>, 3>;
25 PlatformType mapToPlatformType(PlatformType Platform, bool WantSim);
26 PlatformType mapToPlatformType(const Triple &Target);
28 StringRef getPlatformName(PlatformType Platform);
29 PlatformType getPlatformFromName(StringRef Name);
30 std::string getOSAndEnvironmentName(PlatformType Platform,
H A DTarget.h31 Target(Architecture Arch, PlatformType Platform,
43 PlatformType Platform;
/freebsd-src/contrib/llvm-project/llvm/lib/TextAPI/
H A DPlatform.cpp21 PlatformType mapToPlatformType(PlatformType Platform, bool WantSim) { in mapToPlatformType()
34 PlatformType mapToPlatformType(const Triple &Target) { in mapToPlatformType()
69 StringRef getPlatformName(PlatformType Platform) { in getPlatformName()
77 llvm_unreachable("Unknown llvm::MachO::PlatformType enum"); in getPlatformFromName()
80 PlatformType getPlatformFromName(StringRef Name) { in getPlatformFromName()
81 return StringSwitch<PlatformType>(Name) in getPlatformFromName()
90 std::string getOSAndEnvironmentName(PlatformType Platform, in getOSAndEnvironmentName()
120 llvm_unreachable("Unknown llvm::MachO::PlatformType enum"); in mapToSupportedOSVersion()
H A DTarget.cpp22 PlatformType Platform; in create()
23 Platform = StringSwitch<PlatformType>(PlatformStr) in create()
35 Platform = (PlatformType)RawValue; in create()
H A DTextStubCommon.cpp108 auto Platform = StringSwitch<PlatformType>(Scalar) in input()
/freebsd-src/contrib/llvm-project/lld/MachO/
H A DDriver.h73 llvm::MachO::PlatformType removeSimulator(llvm::MachO::PlatformType platform);
H A DDriver.cpp701 PlatformType platform = PLATFORM_UNKNOWN; in parsePlatformVersion()
716 StringSwitch<PlatformType>(lowerDash(platformStr)) in setPlatformVersions()
746 std::map<PlatformType, PlatformVersion> platformVersions; in setPlatformVersions()
1015 PlatformType macho::removeSimulator(PlatformType platform) { in dataConstDefault()
1035 static bool shouldAdhocSignByDefault(Architecture arch, PlatformType platform) { in dataConstDefault()
1046 static const std::array<std::pair<PlatformType, VersionTuple>, 6> minVersion = in shouldEmitChainedFixups()
1053 PlatformType platform = removeSimulator(config->platformInfo.target.Platform); in shouldEmitChainedFixups()
1109 static const std::array<std::pair<PlatformType, VersionTuple>, 9> minVersion = in match()
1121 PlatformType platfor in parseSymbolPatternsFile()
[all...]
H A DConfig.h243 llvm::MachO::PlatformType platform() const {
H A DWriter.cpp777 static const std::array<std::pair<PlatformType, VersionTuple>, 7> minVersion = in createLoadCommands()
H A DInputFiles.cpp126 info.target.Platform = static_cast<PlatformType>(cmd->platform); in getPlatformInfos()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAssembler.h
/freebsd-src/contrib/llvm-project/llvm/lib/MC/
H A DMCMachOStreamer.cpp261 getWriter().setBuildVersion((MachO::PlatformType)Platform, Major, Minor, in emitAssemblerFlag()
268 getWriter().setTargetVariantBuildVersion((MachO::PlatformType)Platform, Major, in emitDataRegion()
H A DMCAsmStreamer.cpp649 static const char *getPlatformName(MachO::PlatformType Type) { in emitBuildVersion()
663 const char *PlatformName = getPlatformName((MachO::PlatformType)Platform); in emitThumbFunc()
H A DMCStreamer.cpp1365 static MachO::PlatformType in emitVersionForTarget()
/freebsd-src/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DDarwinAsmParser.cpp1142 static Triple::OSType getOSTypeFromPlatform(MachO::PlatformType Type) { in getOSTypeFromPlatform()
1199 = getOSTypeFromPlatform((MachO::PlatformType)Platform); in parseBuildVersion()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h500 enum PlatformType { enum