/external/llvm/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 64 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { in llvm_ee_dispose() 70 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module() 76 CAMLprim value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_remove_module() 85 CAMLprim value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_ctors() 91 CAMLprim value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_dtors() 99 CAMLprim value llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) { in llvm_ee_get_data_layout() 114 LLVMExecutionEngineRef EE) { in llvm_ee_add_global_mapping() 120 LLVMExecutionEngineRef EE) { in llvm_ee_get_global_value_address() 125 LLVMExecutionEngineRef EE) { in llvm_ee_get_function_address()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 97 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local 166 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() 170 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() 174 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() 178 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain() 188 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunction() 201 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) { in LLVMFreeMachineCodeForFunction() 205 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule() 209 void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP){ in LLVMAddModuleProvider() 214 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule() [all …]
|
D | ExecutionEngine.cpp | 268 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() 346 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() 472 ExecutionEngine *EE = in create() local 477 ExecutionEngine *EE = in create() local 1108 ExecutionEngineState::ExecutionEngineState(ExecutionEngine &EE) in ExecutionEngineState()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 110 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local 214 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() 218 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() 223 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() 228 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain() 237 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunction() 252 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) { in LLVMFreeMachineCodeForFunction() 255 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule() 259 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule() 267 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, in LLVMFindFunction() [all …]
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 201 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { in llvm_ee_dispose() 207 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module() 214 LLVMExecutionEngineRef EE) { in llvm_ee_remove_module() 223 CAMLprim value llvm_ee_find_function(value Name, LLVMExecutionEngineRef EE) { in llvm_ee_find_function() 236 LLVMExecutionEngineRef EE) { in llvm_ee_run_function() 253 CAMLprim value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_ctors() 259 CAMLprim value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_dtors() 268 LLVMExecutionEngineRef EE) { in llvm_ee_run_function_as_main() 319 LLVMExecutionEngineRef EE) { in llvm_ee_free_machine_code()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ScheduleDAGEmit.cpp | 47 EE = SU->Succs.end(); II != EE; ++II) { in EmitPhysRegCopy() local
|
D | Analysis.cpp | 46 EE = STy->element_end(); in ComputeLinearIndex() local 84 EE = STy->element_end(); in ComputeValueVTs() local
|
/external/swiftshader/third_party/LLVM/examples/HowToUseJIT/ |
D | HowToUseJIT.cpp | 117 ExecutionEngine* EE = EngineBuilder(M).create(); in main() local
|
/external/llvm/examples/HowToUseJIT/ |
D | HowToUseJIT.cpp | 125 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
|
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/ |
D | AlphaBranchSelector.cpp | 49 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local
|
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 116 ExecutionEngine* EE; member 248 ExecutionEngine* EE = EngineBuilder(M).create(); in main() local
|
/external/llvm/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 133 ExecutionEngine* EE; member 270 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
|
/external/llvm/lib/Target/XCore/ |
D | XCoreFrameToArgsOffsetElim.cpp | 55 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | RTDyldMemoryManager.h | 46 virtual void notifyObjectLoaded(ExecutionEngine *EE, in notifyObjectLoaded()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | GraphWriter.h | 67 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 217 child_iterator EE = GTraits::child_end(Node); in writeNode() local
|
/external/swiftshader/third_party/LLVM/examples/Fibonacci/ |
D | fibonacci.cpp | 106 ExecutionEngine *EE = in main() local
|
/external/speex/libspeex/ |
D | cb_search_sse.h | 57 __m128 resj, EE; in compute_weighted_codebook() local
|
/external/llvm/examples/Fibonacci/ |
D | fibonacci.cpp | 119 ExecutionEngine *EE = in main() local
|
/external/llvm/include/llvm/Support/ |
D | GraphWriter.h | 71 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 231 child_iterator EE = GTraits::child_end(Node); in writeNode() local
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfAccelTable.cpp | 74 for (StringMap<DataArray>::iterator EI = Entries.begin(), EE = Entries.end(); in FinalizeTable() local 269 EE = Entries.end(); in print() local
|
/external/clang/test/SemaCXX/ |
D | using-decl-1.cpp | 242 struct EE { int EE; }; struct
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | BranchProbabilityInfo.cpp | 289 EE = BackEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local 301 EE = InEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local 314 EE = ExitingEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local
|
/external/swiftshader/third_party/LLVM/tools/lli/ |
D | lli.cpp | 145 static ExecutionEngine *EE = 0; variable
|
/external/clang/examples/clang-interpreter/ |
D | main.cpp | 59 std::unique_ptr<llvm::ExecutionEngine> EE( in Execute() local
|
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
D | PPCBranchSelector.cpp | 69 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local
|