LLVM 22.0.0git
JITTargetMachineBuilder.cpp
Go to the documentation of this file.
1//===----- JITTargetMachineBuilder.cpp - Build TargetMachines for JIT -----===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
14
15namespace llvm {
16namespace orc {
17
19 : TT(std::move(TT)) {
20 Options.EmulatedTLS = true;
21 Options.UseInitArray = true;
22}
23
26
27 // Retrieve host CPU name and sub-target features and add them to builder.
28 // Relocation model, code model and codegen opt level are kept to default
29 // values.
30 for (const auto &Feature : llvm::sys::getHostCPUFeatures())
31 TMBuilder.getFeatures().AddFeature(Feature.first(), Feature.second);
32
33 TMBuilder.setCPU(std::string(llvm::sys::getHostCPUName()));
34
35 return TMBuilder;
36}
37
40
41 std::string ErrMsg;
42 auto *TheTarget = TargetRegistry::lookupTarget(TT, ErrMsg);
43 if (!TheTarget)
44 return make_error<StringError>(std::move(ErrMsg), inconvertibleErrorCode());
45
46 if (!TheTarget->hasJIT())
47 return make_error<StringError>("Target has no JIT support",
49
50 auto *TM = TheTarget->createTargetMachine(
51 TT, CPU, Features.getString(), Options, RM, CM, OptLevel, /*JIT=*/true);
52 if (!TM)
53 return make_error<StringError>("Could not allocate target machine",
55
56 return std::unique_ptr<TargetMachine>(TM);
57}
58
60 const std::vector<std::string> &FeatureVec) {
61 for (const auto &F : FeatureVec)
62 Features.AddFeature(F);
63 return *this;
64}
65
66#ifndef NDEBUG
68 OS << Indent << "{\n"
69 << Indent << " Triple = \"" << JTMB.TT.str() << "\"\n"
70 << Indent << " CPU = \"" << JTMB.CPU << "\"\n"
71 << Indent << " Features = \"" << JTMB.Features.getString() << "\"\n"
72 << Indent << " Options = <not-printable>\n"
73 << Indent << " Relocation Model = ";
74
75 if (JTMB.RM) {
76 switch (*JTMB.RM) {
77 case Reloc::Static:
78 OS << "Static";
79 break;
80 case Reloc::PIC_:
81 OS << "PIC_";
82 break;
84 OS << "DynamicNoPIC";
85 break;
86 case Reloc::ROPI:
87 OS << "ROPI";
88 break;
89 case Reloc::RWPI:
90 OS << "RWPI";
91 break;
93 OS << "ROPI_RWPI";
94 break;
95 }
96 } else
97 OS << "unspecified (will use target default)";
98
99 OS << "\n"
100 << Indent << " Code Model = ";
101
102 if (JTMB.CM) {
103 switch (*JTMB.CM) {
104 case CodeModel::Tiny:
105 OS << "Tiny";
106 break;
107 case CodeModel::Small:
108 OS << "Small";
109 break;
111 OS << "Kernel";
112 break;
114 OS << "Medium";
115 break;
116 case CodeModel::Large:
117 OS << "Large";
118 break;
119 }
120 } else
121 OS << "unspecified (will use target default)";
122
123 OS << "\n"
124 << Indent << " Optimization Level = ";
125 switch (JTMB.OptLevel) {
127 OS << "None";
128 break;
130 OS << "Less";
131 break;
133 OS << "Default";
134 break;
136 OS << "Aggressive";
137 break;
138 }
139
140 OS << "\n" << Indent << "}\n";
141}
142#endif // NDEBUG
143
144} // End namespace orc.
145} // End namespace llvm.
#define F(x, y, z)
Definition: MD5.cpp:55
raw_pwrite_stream & OS
Tagged union holding either a T or a Error.
Definition: Error.h:485
LLVM_ABI std::string getString() const
Returns features as a string.
LLVM_ABI void AddFeature(StringRef String, bool Enable=true)
Adds Features.
unsigned UseInitArray
UseInitArray - Use .init_array instead of .ctors for static constructors.
unsigned EmulatedTLS
EmulatedTLS - This flag enables emulated TLS model, using emutls function in the runtime library.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:47
const std::string & str() const
Definition: Triple.h:475
A utility class for building TargetMachines for JITs.
LLVM_ABI JITTargetMachineBuilder & addFeatures(const std::vector< std::string > &FeatureVec)
Add subtarget features.
SubtargetFeatures & getFeatures()
Access subtarget features.
static LLVM_ABI Expected< JITTargetMachineBuilder > detectHost()
Create a JITTargetMachineBuilder for the host system.
LLVM_ABI JITTargetMachineBuilder(Triple TT)
Create a JITTargetMachineBuilder based on the given triple.
LLVM_ABI Expected< std::unique_ptr< TargetMachine > > createTargetMachine()
Create a TargetMachine.
JITTargetMachineBuilder & setCPU(std::string CPU)
Set the CPU string.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:53
@ DynamicNoPIC
Definition: CodeGen.h:25
@ ROPI_RWPI
Definition: CodeGen.h:25
LLVM_ABI StringMap< bool, MallocAllocator > getHostCPUFeatures()
getHostCPUFeatures - Get the LLVM names for the host CPU features.
Definition: Host.cpp:2400
LLVM_ABI StringRef getHostCPUName()
getHostCPUName - Get the LLVM name for the host CPU.
Definition: Host.cpp:1956
LLVM_ABI std::string getProcessTriple()
getProcessTriple() - Return an appropriate target triple for generating code to be loaded into the cu...
Definition: Host.cpp:2434
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
LLVM_ABI std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Definition: Error.cpp:98
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1886
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:856
static const Target * lookupTarget(StringRef TripleStr, std::string &Error)
lookupTarget - Lookup a target based on a target triple.