reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm-c/ExecutionEngine.h
   75 LLVMBool LLVMCreateExecutionEngineForModule(LLVMExecutionEngineRef *OutEE,
   79 LLVMBool LLVMCreateInterpreterForModule(LLVMExecutionEngineRef *OutInterp,
   83 LLVMBool LLVMCreateJITCompilerForModule(LLVMExecutionEngineRef *OutJIT,
  109   LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
  113 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
  115 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
  117 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
  119 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
  123 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
  127 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F);
  129 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
  131 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
  134 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
  137 void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,
  140 LLVMTargetDataRef LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE);
  142 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE);
  144 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global,
  147 void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global);
  149 uint64_t LLVMGetGlobalValueAddress(LLVMExecutionEngineRef EE, const char *Name);
  151 uint64_t LLVMGetFunctionAddress(LLVMExecutionEngineRef EE, const char *Name);
lib/ExecutionEngine/ExecutionEngineBindings.cpp
  103 LLVMBool LLVMCreateExecutionEngineForModule(LLVMExecutionEngineRef *OutEE,
  118 LLVMBool LLVMCreateInterpreterForModule(LLVMExecutionEngineRef *OutInterp,
  133 LLVMBool LLVMCreateJITCompilerForModule(LLVMExecutionEngineRef *OutJIT,
  161     LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M,
  216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) {
  220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) {
  225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) {
  230 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
  239 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
  254 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) {
  257 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){
  261 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
  269 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
  278 void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,
  283 LLVMTargetDataRef LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) {
  288 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) {
  292 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global,
  297 void *LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) {
  303 uint64_t LLVMGetGlobalValueAddress(LLVMExecutionEngineRef EE, const char *Name) {
  307 uint64_t LLVMGetFunctionAddress(LLVMExecutionEngineRef EE, const char *Name) {
unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
  328   LLVMExecutionEngineRef Engine;