Home | History | Annotate | Download | only in cached

Lines Matching refs:MCJITHelper

738 class MCJITHelper
741 MCJITHelper(LLVMContext& C) : Context(C), OpenModule(NULL) {}
742 ~MCJITHelper();
769 HelpingMemoryManager(MCJITHelper *Helper) : MasterHelper(Helper) {}
774 /// modules associated with the MCJITHelper to cross link functions
783 MCJITHelper *MasterHelper;
801 MCJITHelper::~MCJITHelper()
819 Function *MCJITHelper::getFunction(const std::string FnName) {
851 Module *MCJITHelper::getModuleForNewFunction() {
864 void *MCJITHelper::getPointerToFunction(Function* F) {
889 void MCJITHelper::closeCurrentModule() {
893 ExecutionEngine *MCJITHelper::compileModule(Module *M) {
955 void *MCJITHelper::getPointerToNamedFunction(const std::string &Name)
980 void MCJITHelper::addModule(Module* M) {
984 void MCJITHelper::dump()
997 static MCJITHelper *TheHelper;
1537 TheHelper = new MCJITHelper(Context);