Searched defs:ExecutionEngine (Results 1 – 4 of 4) sorted by relevance
30 type ExecutionEngine struct { struct31 C C.LLVMExecutionEngineRef130 func (ee ExecutionEngine) Dispose() { C.LLVMDisposeExecutionEngine(ee.C) }131 func (ee ExecutionEngine) RunStaticConstructors() { C.LLVMRunStaticConstructors(ee.C) }132 func (ee ExecutionEngine) RunStaticDestructors() { C.LLVMRunStaticDestructors(ee.C) }134 func (ee ExecutionEngine) RunFunction(f Value, args []GenericValue) (g GenericValue) {145 func (ee ExecutionEngine) FreeMachineCodeForFunction(f Value) {148 func (ee ExecutionEngine) AddModule(m Module) { C.LLVMAddModule(ee.C, m.C) }150 func (ee ExecutionEngine) RemoveModule(m Module) {155 func (ee ExecutionEngine) FindFunction(name string) (f Value) {[all …]
24 class ExecutionEngine; variable
39 class ExecutionEngine; variable
54 ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M) in ExecutionEngine() function in ExecutionEngine