HomeSort by relevance Sort by last modified time
    Searched refs:CodeModel (Results 51 - 75 of 113) sorted by null

1 23 4 5

  /external/llvm/lib/Target/Mips/
MipsTargetMachine.cpp 84 // Using CodeModel::Large enables different CALL behavior.
88 Reloc::Model RM, CodeModel::Model CM,
110 Reloc::Model RM, CodeModel::Model CM,
119 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.cpp 93 Reloc::Model RM, CodeModel::Model CM,
113 Reloc::Model RM, CodeModel::Model CM,
122 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 91 CodeModel::Model CM,
101 if (CM == CodeModel::Default) {
104 CM = CodeModel::Medium;
  /external/llvm/lib/Target/
TargetMachineC.cpp 116 LLVMCodeModel CodeModel) {
133 CodeModel::Model CM = unwrap(CodeModel);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 286 , CodeModel(CodeModel::Default)
324 .setCodeModel(CodeModel::JITDefault)
336 CodeModel::Model CodeModel;
  /external/clang/lib/CodeGen/
BackendUtil.cpp 451 unsigned CodeModel =
452 llvm::StringSwitch<unsigned>(CodeGenOpts.CodeModel)
453 .Case("small", llvm::CodeModel::Small)
454 .Case("kernel", llvm::CodeModel::Kernel)
455 .Case("medium", llvm::CodeModel::Medium)
456 .Case("large", llvm::CodeModel::Large)
457 .Case("default", llvm::CodeModel::Default)
459 assert(CodeModel != ~0u && "invalid code model!");
460 llvm::CodeModel::Model CM = static_cast<llvm::CodeModel::Model>(CodeModel)
    [all...]
  /external/llvm/tools/lli/
lli.cpp 205 cl::opt<llvm::CodeModel::Model>
208 cl::init(CodeModel::JITDefault),
209 cl::values(clEnumValN(CodeModel::JITDefault, "default",
211 clEnumValN(CodeModel::Small, "small",
213 clEnumValN(CodeModel::Kernel, "kernel",
215 clEnumValN(CodeModel::Medium, "medium",
217 clEnumValN(CodeModel::Large, "large",
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 133 static cl::opt<llvm::CodeModel::Model>
136 cl::init(CodeModel::Default),
137 cl::values(clEnumValN(CodeModel::Default, "default",
139 clEnumValN(CodeModel::Small, "small",
141 clEnumValN(CodeModel::Kernel, "kernel",
143 clEnumValN(CodeModel::Medium, "medium",
145 clEnumValN(CodeModel::Large, "large",
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 250 ?code_model:CodeModel.t -> Target.t -> TargetMachine.t */
253 value CodeModel, LLVMTargetRef Target) {
268 if(CodeModel != Val_int(0))
269 CodeModelEnum = Int_val(Field(CodeModel, 0));
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.cpp 126 Reloc::Model RM, CodeModel::Model CM,
168 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
176 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.cpp 182 Reloc::Model RM, CodeModel::Model CM,
217 Reloc::Model RM, CodeModel::Model CM,
226 Reloc::Model RM, CodeModel::Model CM,
PPCSubtarget.cpp 222 if (TM.getCodeModel() == CodeModel::Large)
  /external/clang/include/clang/Frontend/
CodeGenOptions.h 112 std::string CodeModel;
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 50 Options.CodeModel = Int_val(Field(OptRecord, 1));
llvm_executionengine.mli 31 code_model: Llvm_target.CodeModel.t;
37 [{ opt_level = 0; code_model = CodeModel.JIT_default;
  /external/llvm/include/llvm-c/
ExecutionEngine.h 46 LLVMCodeModel CodeModel;
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUMCTargetDesc.cpp 61 CodeModel::Model CM,
  /external/llvm/lib/Target/SystemZ/
SystemZTargetMachine.cpp 85 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyTargetMachine.cpp 46 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUTargetMachine.cpp 44 Reloc::Model RM, CodeModel::Model CM,
radeon_llvm_emit.cpp 123 TO, Reloc::Default, CodeModel::Default,
  /external/llvm/include/llvm/Support/
TargetRegistry.h 97 CodeModel::Model CM,
107 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
306 CodeModel::Model CM,
364 CodeModel::Model CM = CodeModel::Default,
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 522 CodeModel::Model CMModel;
588 /// setCodeModel - Set the CodeModel that the ExecutionEngine target
590 /// "CodeModel::JITDefault".
591 EngineBuilder &setCodeModel(CodeModel::Model M) {
  /external/llvm/lib/Target/Sparc/
SparcAsmPrinter.cpp 193 case CodeModel::Small:
198 case CodeModel::Medium: {
210 case CodeModel::Large: {
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 153 options.CodeModel = LLVMCodeModelJITDefault;
200 .setCodeModel(unwrap(options.CodeModel))

Completed in 1749 milliseconds

1 23 4 5