Searched defs:ExecutionEngine (Results 1 – 6 of 6) sorted by relevance
31 type ExecutionEngine struct { struct32 C C.LLVMExecutionEngineRef131 func (ee ExecutionEngine) Dispose() { C.LLVMDisposeExecutionEngine(ee.C) }132 func (ee ExecutionEngine) RunStaticConstructors() { C.LLVMRunStaticConstructors(ee.C) }133 func (ee ExecutionEngine) RunStaticDestructors() { C.LLVMRunStaticDestructors(ee.C) }135 func (ee ExecutionEngine) RunFunction(f Value, args []GenericValue) (g GenericValue) {146 func (ee ExecutionEngine) FreeMachineCodeForFunction(f Value) {149 func (ee ExecutionEngine) AddModule(m Module) { C.LLVMAddModule(ee.C, m.C) }151 func (ee ExecutionEngine) RemoveModule(m Module) {156 func (ee ExecutionEngine) FindFunction(name string) (f Value) {[all …]
25 class ExecutionEngine; variable
41 class ExecutionEngine; variable484 ExecutionEngine(const DataLayout DL) : DL(std::move(DL)){} in ExecutionEngine() function
37 class ExecutionEngine; variable
132 class ExecutionEngine; variable
81 ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M) in ExecutionEngine() function in ExecutionEngine86 ExecutionEngine::ExecutionEngine(DataLayout DL, std::unique_ptr<Module> M) in ExecutionEngine() function in ExecutionEngine