Proteus
Programmable JIT compilation and optimization for C/C++ using LLVM
Loading...
Searching...
No Matches
TargetModel.h
Go to the documentation of this file.
1#ifndef PROTEUS_TARGET_MODE_H
2#define PROTEUS_TARGET_MODE_H
3
4#include <string>
5
6namespace proteus {
7
9
10TargetModelType parseTargetModel(const std::string &Target);
11
12std::string getTargetTriple(TargetModelType Model);
13
14bool isHostTargetModel(TargetModelType TargetModel);
15
16} // namespace proteus
17
18#endif
Definition MemoryCache.h:26
TargetModelType
Definition TargetModel.h:8
bool isHostTargetModel(TargetModelType TargetModel)
Definition TargetModel.cpp:49
TargetModelType parseTargetModel(const std::string &Target)
Definition TargetModel.cpp:10
std::string getTargetTriple(TargetModelType Model)
Definition TargetModel.cpp:34