HomeSort by: relevance | last modified time | path
    Searched refs:JIT (Results 1 - 25 of 68) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
CodeGenCWrappers.h 25 inline Optional<CodeModel::Model> unwrap(LLVMCodeModel Model, bool &JIT) {
26 JIT = false;
29 JIT = true;
  /src/sys/rump/net/lib/libbpfjit/
Makefile 9 COMMENT=JIT compiler for Berkeley Packet Filter
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
SparcTargetMachine.h 31 CodeGenOpt::Level OL, bool JIT, bool is64bit);
52 CodeGenOpt::Level OL, bool JIT);
63 CodeGenOpt::Level OL, bool JIT);
73 CodeGenOpt::Level OL, bool JIT);
SparcTargetMachine.cpp 73 bool Is64Bit, bool JIT) {
82 if (JIT)
93 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit)
97 CM, getEffectiveRelocModel(RM), is64bit, JIT),
192 CodeGenOpt::Level OL, bool JIT)
193 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
202 CodeGenOpt::Level OL, bool JIT)
203 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
212 CodeGenOpt::Level OL, bool JIT)
213 : SparcTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 34 CodeGenOpt::Level OL, bool JIT, bool IsLittleEndian);
79 bool JIT);
91 bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsTargetMachine.h 43 CodeGenOpt::Level OL, bool JIT, bool isLittle);
87 CodeGenOpt::Level OL, bool JIT);
99 CodeGenOpt::Level OL, bool JIT);
MipsTargetMachine.cpp 99 static Reloc::Model getEffectiveRelocModel(bool JIT,
101 if (!RM.hasValue() || JIT)
116 CodeGenOpt::Level OL, bool JIT,
119 CPU, FS, Options, getEffectiveRelocModel(JIT, RM),
148 CodeGenOpt::Level OL, bool JIT)
149 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
158 CodeGenOpt::Level OL, bool JIT)
159 : MipsTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
  /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/
CSKYTargetMachine.h 28 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kTargetMachine.cpp 73 bool JIT) {
90 CodeGenOpt::Level OL, bool JIT)
93 ::getEffectiveCodeModel(CM, JIT), OL),
M68kTargetMachine.h 39 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCTargetMachine.h 31 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRTargetMachine.h 34 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFTargetMachine.h 28 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetMachine.h 33 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiTargetMachine.h 34 CodeGenOpt::Level OptLevel, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430TargetMachine.h 33 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVTargetMachine.h 31 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZTargetMachine.h 36 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86TargetMachine.h 31 // True if this is used in JIT.
38 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreTargetMachine.h 34 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetMachine.h 90 CodeGenOpt::Level OL, bool JIT);
100 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.h 80 CodeGenOpt::Level OL, bool JIT);
89 CodeGenOpt::Level OL, bool JIT);
  /src/external/apache2/llvm/dist/llvm/examples/BrainF/
BrainFDriver.cpp 10 // which it can then run using the JIT or output as BitCode.
18 // ./BrainF -jit prog.bf #Run program now
19 // ./BrainF -jit -abc prog.bf #Run program now safely
70 JIT("jit", cl::desc("Run program Just-In-Time"));
119 if (!JIT) {
157 if (JIT) {
161 outs() << "------- Running JIT -------\n";
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 27 #define DEBUG_TYPE "jit"
139 builder.setEngineKind(EngineKind::JIT)
142 if (ExecutionEngine *JIT = builder.create()) {
143 *OutJIT = wrap(JIT);
198 builder.setEngineKind(EngineKind::JIT)
202 bool JIT;
203 if (Optional<CodeModel::Model> CM = unwrap(options.CodeModel, JIT))
208 if (ExecutionEngine *JIT = builder.create()) {
209 *OutJIT = wrap(JIT);
426 /*===-- JIT Event Listener functions -------------------------------------===*
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUTargetMachine.h 78 CodeGenOpt::Level OL, bool JIT);
103 CodeGenOpt::Level OL, bool JIT);

Completed in 87 milliseconds

1 2 3