Lines Matching defs:ExecutionEngine
31 type ExecutionEngine struct { struct
32 C C.LLVMExecutionEngineRef
131 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) {
163 func (ee ExecutionEngine) RecompileAndRelinkFunction(f Value) unsafe.Pointer {
167 func (ee ExecutionEngine) TargetData() (td TargetData) {
172 func (ee ExecutionEngine) AddGlobalMapping(global Value, addr unsafe.Pointer) {
176 func (ee ExecutionEngine) PointerToGlobal(global Value) unsafe.Pointer {