Searched defs:CodeModel (Results 1 - 12 of 12) sorted by relevance

/external/llvm/bindings/ocaml/target/
H A Dllvm_target.mli37 module CodeModel : sig module
190 ?code_model:CodeModel.t -> Target.t -> t
H A Dllvm_target.ml32 module CodeModel = struct module
117 ?code_model:CodeModel.t -> Target.t -> t
H A Dtarget_ocaml.c281 ?code_model:CodeModel.t -> Target.t -> TargetMachine.t */
284 value CodeModel, LLVMTargetRef Target) {
299 if(CodeModel != Val_int(0))
300 CodeModelEnum = Int_val(Field(CodeModel, 0));
282 llvm_create_targetmachine_native(value Triple, value CPU, value Features, value OptLevel, value RelocMode, value CodeModel, LLVMTargetRef Target) argument
/external/llvm/include/llvm-c/
H A DExecutionEngine.h47 LLVMCodeModel CodeModel; member in struct:LLVMMCJITCompilerOptions
/external/llvm/include/llvm/LTO/
H A DLTOCodeGenerator.h142 lto_codegen_model CodeModel; member in struct:llvm::LTOCodeGenerator
/external/llvm/include/llvm/Support/
H A DCodeGen.h29 namespace CodeModel { namespace in namespace:llvm
54 inline CodeModel::Model unwrap(LLVMCodeModel Model) {
57 return CodeModel::Default;
59 return CodeModel::JITDefault;
61 return CodeModel::Small;
63 return CodeModel::Kernel;
65 return CodeModel::Medium;
67 return CodeModel::Large;
69 return CodeModel::Default;
72 inline LLVMCodeModel wrap(CodeModel
[all...]
H A DTargetRegistry.h86 CodeModel::Model CM,
100 CodeModel::Model CM,
293 CodeModel::Model CM,
350 CodeModel::Model CM = CodeModel::Default,
896 CodeModel::Model /*CM*/,
1068 CodeModel::Model CM,
347 createTargetMachine(StringRef Triple, StringRef CPU, StringRef Features, const TargetOptions &Options, Reloc::Model RM = Reloc::Default, CodeModel::Model CM = CodeModel::Default, CodeGenOpt::Level OL = CodeGenOpt::Default) const argument
/external/llvm/lib/ExecutionEngine/JIT/
H A DJIT.h104 CodeModel::Model CMM = CodeModel::JITDefault) {
97 create(Module *M, std::string *Err, JITMemoryManager *JMM, CodeGenOpt::Level OptLevel = CodeGenOpt::Default, bool GVsWithCode = true, Reloc::Model RM = Reloc::Default, CodeModel::Model CMM = CodeModel::JITDefault) argument
/external/clang/include/clang/Frontend/
H A DCodeGenOptions.h97 std::string CodeModel; member in class:clang::CodeGenOptions
/external/llvm/lib/Target/
H A DTargetMachineC.cpp109 LLVMCodeModel CodeModel) {
126 CodeModel::Model CM = unwrap(CodeModel);
106 LLVMCreateTargetMachine(LLVMTargetRef T, const char* Triple, const char* CPU, const char* Features, LLVMCodeGenOptLevel Level, LLVMRelocMode Reloc, LLVMCodeModel CodeModel) argument
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp360 unsigned CodeModel = local
361 llvm::StringSwitch<unsigned>(CodeGenOpts.CodeModel)
362 .Case("small", llvm::CodeModel::Small)
363 .Case("kernel", llvm::CodeModel::Kernel)
364 .Case("medium", llvm::CodeModel::Medium)
365 .Case("large", llvm::CodeModel::Large)
366 .Case("default", llvm::CodeModel::Default)
368 assert(CodeModel != ~0u && "invalid code model!");
369 llvm::CodeModel::Model CM = static_cast<llvm::CodeModel
[all...]
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h281 , CodeModel(CodeModel::Default)
325 .setCodeModel(CodeModel::JITDefault)
337 CodeModel::Model CodeModel; member in class:llvm::MCJITTestBase

Completed in 411 milliseconds