1 //===-- TargetMachine.cpp -------------------------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the LLVM-C part of TargetMachine.h
12 //===----------------------------------------------------------------------===//
14 #include "llvm-c/Core.h"
15 #include "llvm-c/Target.h"
16 #include "llvm-c/TargetMachine.h"
17 #include "llvm/Analysis/TargetTransformInfo.h"
18 #include "llvm/IR/DataLayout.h"
19 #include "llvm/IR/LegacyPassManager.h"
20 #include "llvm/IR/Module.h"
21 #include "llvm/MC/SubtargetFeature.h"
22 #include "llvm/Support/FileSystem.h"
23 #include "llvm/Support/FormattedStream.h"
24 #include "llvm/Support/Host.h"
25 #include "llvm/Support/TargetRegistry.h"
26 #include "llvm/Support/raw_ostream.h"
27 #include "llvm/Target/CodeGenCWrappers.h"
28 #include "llvm/Target/TargetMachine.h"
35 static TargetMachine
*unwrap(LLVMTargetMachineRef P
) {
36 return reinterpret_cast<TargetMachine
*>(P
);
38 static Target
*unwrap(LLVMTargetRef P
) {
39 return reinterpret_cast<Target
*>(P
);
41 static LLVMTargetMachineRef
wrap(const TargetMachine
*P
) {
42 return reinterpret_cast<LLVMTargetMachineRef
>(const_cast<TargetMachine
*>(P
));
44 static LLVMTargetRef
wrap(const Target
* P
) {
45 return reinterpret_cast<LLVMTargetRef
>(const_cast<Target
*>(P
));
48 LLVMTargetRef
LLVMGetFirstTarget() {
49 if (TargetRegistry::targets().begin() == TargetRegistry::targets().end()) {
53 const Target
*target
= &*TargetRegistry::targets().begin();
56 LLVMTargetRef
LLVMGetNextTarget(LLVMTargetRef T
) {
57 return wrap(unwrap(T
)->getNext());
60 LLVMTargetRef
LLVMGetTargetFromName(const char *Name
) {
61 StringRef NameRef
= Name
;
62 auto I
= find_if(TargetRegistry::targets(),
63 [&](const Target
&T
) { return T
.getName() == NameRef
; });
64 return I
!= TargetRegistry::targets().end() ? wrap(&*I
) : nullptr;
67 LLVMBool
LLVMGetTargetFromTriple(const char* TripleStr
, LLVMTargetRef
*T
,
68 char **ErrorMessage
) {
71 *T
= wrap(TargetRegistry::lookupTarget(TripleStr
, Error
));
75 *ErrorMessage
= strdup(Error
.c_str());
83 const char * LLVMGetTargetName(LLVMTargetRef T
) {
84 return unwrap(T
)->getName();
87 const char * LLVMGetTargetDescription(LLVMTargetRef T
) {
88 return unwrap(T
)->getShortDescription();
91 LLVMBool
LLVMTargetHasJIT(LLVMTargetRef T
) {
92 return unwrap(T
)->hasJIT();
95 LLVMBool
LLVMTargetHasTargetMachine(LLVMTargetRef T
) {
96 return unwrap(T
)->hasTargetMachine();
99 LLVMBool
LLVMTargetHasAsmBackend(LLVMTargetRef T
) {
100 return unwrap(T
)->hasMCAsmBackend();
103 LLVMTargetMachineRef
LLVMCreateTargetMachine(LLVMTargetRef T
,
104 const char *Triple
, const char *CPU
, const char *Features
,
105 LLVMCodeGenOptLevel Level
, LLVMRelocMode Reloc
,
106 LLVMCodeModel CodeModel
) {
107 Optional
<Reloc::Model
> RM
;
109 case LLVMRelocStatic
:
115 case LLVMRelocDynamicNoPic
:
116 RM
= Reloc::DynamicNoPIC
;
123 Optional
<CodeModel::Model
> CM
= unwrap(CodeModel
, JIT
);
125 CodeGenOpt::Level OL
;
127 case LLVMCodeGenLevelNone
:
128 OL
= CodeGenOpt::None
;
130 case LLVMCodeGenLevelLess
:
131 OL
= CodeGenOpt::Less
;
133 case LLVMCodeGenLevelAggressive
:
134 OL
= CodeGenOpt::Aggressive
;
137 OL
= CodeGenOpt::Default
;
142 return wrap(unwrap(T
)->createTargetMachine(Triple
, CPU
, Features
, opt
, RM
, CM
,
146 void LLVMDisposeTargetMachine(LLVMTargetMachineRef T
) { delete unwrap(T
); }
148 LLVMTargetRef
LLVMGetTargetMachineTarget(LLVMTargetMachineRef T
) {
149 const Target
* target
= &(unwrap(T
)->getTarget());
153 char* LLVMGetTargetMachineTriple(LLVMTargetMachineRef T
) {
154 std::string StringRep
= unwrap(T
)->getTargetTriple().str();
155 return strdup(StringRep
.c_str());
158 char* LLVMGetTargetMachineCPU(LLVMTargetMachineRef T
) {
159 std::string StringRep
= unwrap(T
)->getTargetCPU();
160 return strdup(StringRep
.c_str());
163 char* LLVMGetTargetMachineFeatureString(LLVMTargetMachineRef T
) {
164 std::string StringRep
= unwrap(T
)->getTargetFeatureString();
165 return strdup(StringRep
.c_str());
168 void LLVMSetTargetMachineAsmVerbosity(LLVMTargetMachineRef T
,
169 LLVMBool VerboseAsm
) {
170 unwrap(T
)->Options
.MCOptions
.AsmVerbose
= VerboseAsm
;
173 LLVMTargetDataRef
LLVMCreateTargetDataLayout(LLVMTargetMachineRef T
) {
174 return wrap(new DataLayout(unwrap(T
)->createDataLayout()));
177 static LLVMBool
LLVMTargetMachineEmit(LLVMTargetMachineRef T
, LLVMModuleRef M
,
178 raw_pwrite_stream
&OS
,
179 LLVMCodeGenFileType codegen
,
180 char **ErrorMessage
) {
181 TargetMachine
* TM
= unwrap(T
);
182 Module
* Mod
= unwrap(M
);
184 legacy::PassManager pass
;
188 Mod
->setDataLayout(TM
->createDataLayout());
190 TargetMachine::CodeGenFileType ft
;
192 case LLVMAssemblyFile
:
193 ft
= TargetMachine::CGFT_AssemblyFile
;
196 ft
= TargetMachine::CGFT_ObjectFile
;
199 if (TM
->addPassesToEmitFile(pass
, OS
, nullptr, ft
)) {
200 error
= "TargetMachine can't emit a file of this type";
201 *ErrorMessage
= strdup(error
.c_str());
211 LLVMBool
LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T
, LLVMModuleRef M
,
212 char* Filename
, LLVMCodeGenFileType codegen
, char** ErrorMessage
) {
214 raw_fd_ostream
dest(Filename
, EC
, sys::fs::F_None
);
216 *ErrorMessage
= strdup(EC
.message().c_str());
219 bool Result
= LLVMTargetMachineEmit(T
, M
, dest
, codegen
, ErrorMessage
);
224 LLVMBool
LLVMTargetMachineEmitToMemoryBuffer(LLVMTargetMachineRef T
,
225 LLVMModuleRef M
, LLVMCodeGenFileType codegen
, char** ErrorMessage
,
226 LLVMMemoryBufferRef
*OutMemBuf
) {
227 SmallString
<0> CodeString
;
228 raw_svector_ostream
OStream(CodeString
);
229 bool Result
= LLVMTargetMachineEmit(T
, M
, OStream
, codegen
, ErrorMessage
);
231 StringRef Data
= OStream
.str();
233 LLVMCreateMemoryBufferWithMemoryRangeCopy(Data
.data(), Data
.size(), "");
237 char *LLVMGetDefaultTargetTriple(void) {
238 return strdup(sys::getDefaultTargetTriple().c_str());
241 char *LLVMNormalizeTargetTriple(const char* triple
) {
242 return strdup(Triple::normalize(StringRef(triple
)).c_str());
245 char *LLVMGetHostCPUName(void) {
246 return strdup(sys::getHostCPUName().data());
249 char *LLVMGetHostCPUFeatures(void) {
250 SubtargetFeatures Features
;
251 StringMap
<bool> HostFeatures
;
253 if (sys::getHostCPUFeatures(HostFeatures
))
254 for (auto &F
: HostFeatures
)
255 Features
.AddFeature(F
.first(), F
.second
);
257 return strdup(Features
.getString().c_str());
260 void LLVMAddAnalysisPasses(LLVMTargetMachineRef T
, LLVMPassManagerRef PM
) {
262 createTargetTransformInfoWrapperPass(unwrap(T
)->getTargetIRAnalysis()));