HomeSort by: relevance | last modified time | path
    Searched refs:Platform (Results 1 - 25 of 42) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Availability.h 36 /// Name of the platform that Version corresponds to.
37 StringRef Platform;
42 AvailabilitySpec(VersionTuple Version, StringRef Platform,
44 : Version(Version), Platform(Platform), BeginLoc(BeginLoc),
52 StringRef getPlatform() const { return Platform; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
Target.h 16 #include "llvm/TextAPI/Platform.h"
27 Target(Architecture Arch, PlatformKind Platform)
28 : Arch(Arch), Platform(Platform) {}
30 : Arch(mapToArchitecture(Triple)), Platform(mapToPlatformKind(Triple)) {}
37 PlatformKind Platform;
41 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
45 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
    [all...]
Platform.h 1 //===- llvm/TextAPI/Platform.h - Platform -----------------------*- C++ -*-===//
38 PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim);
41 StringRef getPlatformName(PlatformKind Platform);
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
Target.cpp 25 PlatformKind Platform;
26 Platform = StringSwitch<PlatformKind>(PlatformStr)
39 if (Platform == PlatformKind::unknown) {
44 Platform = (PlatformKind)RawValue;
48 return Target{Architecture, Platform};
52 return (getArchitectureName(Arch) + " (" + getPlatformName(Platform) + ")")
64 Result.insert(Target.Platform);
Platform.cpp 1 //===- llvm/TextAPI/Platform.cpp - Platform ---------------------*- C++ -*-===//
9 // Implementations of Platform Helper functions.
13 #include "llvm/TextAPI/Platform.h"
21 PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim) {
22 switch (Platform) {
24 return Platform;
65 StringRef getPlatformName(PlatformKind Platform) {
66 switch (Platform) {
TextStubCommon.cpp 61 llvm_unreachable("unexpected platform");
105 return "invalid platform";
108 auto Platform = StringSwitch<PlatformKind>(Scalar)
118 if (Platform == PlatformKind::macCatalyst)
120 return "invalid platform";
122 if (Platform == PlatformKind::unknown)
123 return "unknown platform";
125 Values.insert(Platform);
TextStub.cpp 43 platform: ios # Specifies the platform (macosx, ios, etc)
73 platform: ios # Specifies the platform (macosx, ios, etc)
114 platform: ios # Specifies the platform (macosx, ios, etc)
379 switch (Value.Platform) {
426 if (Value.Platform == PlatformKind::unknown)
427 return "unknown platform";
590 // TBD v1 - TBD v3 files only support one platform and severa
    [all...]
  /src/sys/external/isc/libsodium/dist/builds/msvc/build/
buildbase.bat 16 ECHO Platform=x86
19 msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=Win32 %solution% >> %log%
22 msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=Win32 %solution% >> %log%
25 msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=Win32 %solution% >> %log%
28 msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=Win32 %solution% >> %log%
31 msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=Win32 %solution% >> %log%
34 msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=Win32 %solution% >> %log%
38 ECHO Platform=x64
41 msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=x64 %solution% >> %log%
44 msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=x64 %solution% >> %log
    [all...]
  /src/external/bsd/libpcap/dist/
libpcap.pc.in 14 Description: Platform-independent network traffic capture library
  /src/external/apache2/llvm/lib/libLLVMTextAPI/
Makefile 12 Platform.cpp \
  /src/external/bsd/zstd/dist/build/VS_scripts/
build.generic.cmd 23 echo msbuild_platform: Platform (x64 or Win32)
25 echo msbuild_toolset: Platform Toolset (v100, v110, v120, v140, v141, v142, v143, ...)
53 SET msbuild_params=/verbosity:minimal /nologo /t:Clean,Build /p:Platform=%msbuild_platform% /p:Configuration=%msbuild_configuration%
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAssembler.h 92 MachO::PlatformType Platform; ///< Used when EmitBuildVersion==true.
277 void setBuildVersion(MachO::PlatformType Platform, unsigned Major,
281 VersionInfo.TypeOrPlatform.Platform = Platform;
  /src/external/apache2/llvm/dist/llvm/tools/msbuild/
install.bat 26 ECHO Installing x64 Platform Toolset
35 ECHO Installing Win32 Platform Toolset
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCMachOStreamer.cpp 93 void emitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor,
279 void MCMachOStreamer::emitBuildVersion(unsigned Platform, unsigned Major,
282 getAssembler().setBuildVersion((MachO::PlatformType)Platform, Major, Minor,
MCAsmStreamer.cpp 167 void emitBuildVersion(unsigned Platform, unsigned Major, unsigned Minor,
619 llvm_unreachable("Invalid Mach-O platform type");
622 void MCAsmStreamer::emitBuildVersion(unsigned Platform, unsigned Major,
625 const char *PlatformName = getPlatformName((MachO::PlatformType)Platform);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
MachOPlatform.h 87 class MachOPlatform : public Platform {
Core.h 898 friend class Platform;
1194 class Platform {
1196 virtual ~Platform();
1200 /// Platform to install any JITDylib specific standard symbols (e.g
1281 /// Set the Platform for this ExecutionSession.
1282 void setPlatform(std::unique_ptr<Platform> P) { this->P = std::move(P); }
1284 /// Get the Platform for this session.
1285 /// Will return null if no Platform has been set for this ExecutionSession.
1286 Platform *getPlatform() { return P.get(); }
1322 /// If a Platform is attached then Platform::setupJITDylib will be called t
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Darwin.cpp 943 // If the target isn't initialized (e.g., an unknown Darwin platform, return
1062 // Mash in the platform.
1151 llvm_unreachable("Unsupported platform");
1180 llvm_unreachable("Unsupported platform");
1393 DarwinPlatformKind getPlatform() const { return Platform; }
1427 switch (Platform) {
1478 static DarwinPlatform createOSVersionArg(DarwinPlatformKind Platform,
1480 return DarwinPlatform(OSVersionArg, Platform, A);
1482 static DarwinPlatform createDeploymentTargetEnv(DarwinPlatformKind Platform,
1485 DarwinPlatform Result(DeploymentTargetEnv, Platform, Value)
    [all...]
Darwin.h 339 void setTarget(DarwinPlatformKind Platform, DarwinEnvironmentKind Environment,
343 if (TargetInitialized && TargetPlatform == Platform &&
350 TargetPlatform = Platform;
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 1156 llvm_unreachable("Invalid mach-o platform type");
1165 return TokError("platform name expected");
1167 unsigned Platform = StringSwitch<unsigned>(PlatformName)
1174 if (Platform == 0)
1175 return Error(PlatformLoc, "unknown platform name");
1195 = getOSTypeFromPlatform((MachO::PlatformType)Platform);
1197 getStreamer().emitBuildVersion(Platform, Major, Minor, Update, SDKVersion);
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Module.cpp 69 StringRef Platform = Target.getPlatformName();
72 // Attempt to match platform and environment.
73 if (Platform == Feature || Target.getTriple().getOSName() == Feature ||
90 // where both are valid examples of the same platform+environment but in the
91 // variant (2) the simulator is hardcoded as part of the platform name. Both
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
LLJIT.cpp 86 /// orc::Platform component of Generic LLVM IR Platform support.
88 class GenericLLVMIRPlatform : public Platform {
120 /// Generic IR Platform Support
291 auto LookupResult = Platform::lookupInitSymbols(ES, LookupSymbols);
343 auto LookupResult = Platform::lookupInitSymbols(ES, LookupSymbols);
384 return Platform::lookupInitSymbols(getExecutionSession(),
408 // Constructs an LLVM IR module containing platform runtime globals,
624 return make_error<StringError>((Twine("Can not enable MachO JIT Platform: "
636 // platform and atexit helpers
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/lli/
lli.cpp 11 // compiler, or through an interpreter if no JIT is available for this platform.
112 "Default for platform and JIT-kind"),
234 Platform("lljit-platform", cl::desc("Platform to use with LLJIT"),
243 "Disable platform support explicitly")),
913 // Set up LLJIT platform.
915 LLJITPlatform P = Platform;
935 llvm_unreachable("Unrecognized platform value");
  /src/external/bsd/wpa/dist/wpa_supplicant/
nmake.mak 5 # Note: Make sure that cl.exe is configured to include Platform SDK
  /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
Signals.inc 53 // method signatures were pulled from DbgHelp.h in the Windows Platform SDK,

Completed in 37 milliseconds

1 2