Home | History | Annotate | Download | only in MCJIT

Lines Matching refs:MCJIT

1 //===-- MCJIT.cpp - MC-based Just-in-Time Compiler ------------------------===//
10 #include "MCJIT.h"
15 #include "llvm/ExecutionEngine/MCJIT.h"
28 RegisterJIT() { MCJIT::Register(); }
36 ExecutionEngine *MCJIT::createJIT(Module *M,
49 return new MCJIT(M, TM, *TJ, new MCJITMemoryManager(JMM, M), OptLevel,
57 MCJIT::MCJIT(Module *m, TargetMachine *tm, TargetJITInfo &tji,
89 MCJIT::~MCJIT() {
93 void *MCJIT::getPointerToBasicBlock(BasicBlock *BB) {
98 void *MCJIT::getPointerToFunction(Function *F) {
114 void *MCJIT::recompileAndRelinkFunction(Function *F) {
118 void MCJIT::freeMachineCodeForFunction(Function *F) {
122 GenericValue MCJIT::runFunction(Function *F,