Home
last modified time | relevance | path

Searched defs:ExecutionEngine (Results 1 – 4 of 4) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/
H A Dexecutionengine.go30 type ExecutionEngine struct { struct
31 C C.LLVMExecutionEngineRef
130 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 …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h24 class ExecutionEngine; variable
H A DExecutionEngine.h39 class ExecutionEngine; variable
/minix3/external/bsd/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp54 ExecutionEngine::ExecutionEngine(std::unique_ptr<Module> M) in ExecutionEngine() function in ExecutionEngine