Searched refs:EE (Results 1 - 25 of 101) sorted by relevance

12345

/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c64 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { argument
65 LLVMDisposeExecutionEngine(EE);
70 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
71 LLVMAddModule(EE, M);
76 CAMLprim value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
79 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error))
85 CAMLprim value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { argument
86 LLVMRunStaticConstructors(EE);
91 CAMLprim value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { argument
92 LLVMRunStaticDestructors(EE);
99 llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) argument
113 llvm_ee_add_global_mapping(LLVMValueRef Global, value Ptr, LLVMExecutionEngineRef EE) argument
119 llvm_ee_get_global_value_address(value Name, LLVMExecutionEngineRef EE) argument
124 llvm_ee_get_function_address(value Name, LLVMExecutionEngineRef EE) argument
[all...]
/external/llvm/include/llvm-c/
H A DExecutionEngine.h113 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
115 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
117 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
119 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
123 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
127 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F);
129 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
131 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
134 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
137 void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,
[all...]
/external/swiftshader/third_party/LLVM/include/llvm-c/
H A DExecutionEngine.h87 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
89 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
91 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
93 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
97 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
101 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F);
103 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
106 void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP);
108 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
112 LLVMBool LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE,
[all...]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp97 if (ExecutionEngine *EE = builder.create()){
98 *OutEE = wrap(EE);
166 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { argument
167 delete unwrap(EE);
170 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { argument
171 unwrap(EE)->runStaticConstructorsDestructors(false);
174 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { argument
175 unwrap(EE)->runStaticConstructorsDestructors(true);
178 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, argument
185 return unwrap(EE)
188 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) argument
201 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) argument
205 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) argument
209 LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP) argument
214 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) argument
222 LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP, LLVMModuleRef *OutMod, char **OutError) argument
230 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) argument
239 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) argument
243 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) argument
247 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
252 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) argument
[all...]
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp69 EE(EngineBuilder(M)
75 const OwningPtr<ExecutionEngine> EE; member in class:__anon20371::JITEventListenerTest
91 EE->RegisterJITEventListener(&Listener);
95 void *F1_addr = EE->getPointerToFunction(F1);
96 void *F2_addr = EE->getPointerToFunction(F2);
97 EE->getPointerToFunction(F1); // Should do nothing.
98 EE->freeMachineCodeForFunction(F1);
99 EE->freeMachineCodeForFunction(F2);
136 EE->RegisterJITEventListener(&Listener1);
137 EE
[all...]
/external/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp44 enum class EE { EE32 = ' ', EE65 = 'A', EE1 = (short)1, EE5 = E5 }; class
50 case EE::EE32: // expected-error {{not implicitly convertible}}
51 case (int)EE::EE32:
61 b = EE::EE32, // expected-error {{not implicitly convertible}}
62 c = (int)EE::EE32,
69 using Int = A<EE::EE32>; // expected-error {{not implicitly convertible}}
70 using Int = A<(int)EE::EE32>;
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp110 if (ExecutionEngine *EE = builder.create()){
111 *OutEE = wrap(EE);
214 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { argument
215 delete unwrap(EE);
218 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { argument
219 unwrap(EE)->finalizeObject();
220 unwrap(EE)->runStaticConstructorsDestructors(false);
223 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { argument
224 unwrap(EE)->finalizeObject();
225 unwrap(EE)
228 LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned ArgC, const char * const *ArgV, const char * const *EnvP) argument
237 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) argument
252 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) argument
255 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) argument
259 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) argument
267 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) argument
276 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) argument
281 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) argument
286 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) argument
290 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
295 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) argument
301 LLVMGetGlobalValueAddress(LLVMExecutionEngineRef EE, const char *Name) argument
305 LLVMGetFunctionAddress(LLVMExecutionEngineRef EE, const char *Name) argument
[all...]
/external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
H A DHowToUseJIT.cpp117 ExecutionEngine* EE = EngineBuilder(M).create(); local
125 GenericValue gv = EE->runFunction(FooF, noargs);
129 EE->freeMachineCodeForFunction(FooF);
130 delete EE;
/external/speex/libspeex/
H A Dcb_search_sse.h57 __m128 resj, EE; local
68 EE = _mm_setzero_ps();
80 EE = _mm_add_ps(EE, _mm_mul_ps(resj, resj));
82 E[i>>2] = EE;
/external/swiftshader/third_party/LLVM/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c201 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { argument
202 LLVMDisposeExecutionEngine(EE);
207 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
208 LLVMAddModule(EE, M);
214 LLVMExecutionEngineRef EE) {
217 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error))
223 CAMLprim value llvm_ee_find_function(value Name, LLVMExecutionEngineRef EE) { argument
227 if (LLVMFindFunction(EE, String_val(Name), &Found))
236 LLVMExecutionEngineRef EE) {
246 Result = LLVMRunFunction(EE,
213 llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) argument
235 llvm_ee_run_function(LLVMValueRef F, value Args, LLVMExecutionEngineRef EE) argument
253 llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) argument
259 llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) argument
266 llvm_ee_run_function_as_main(LLVMValueRef F, value Args, value Env, LLVMExecutionEngineRef EE) argument
318 llvm_ee_free_machine_code(LLVMValueRef F, LLVMExecutionEngineRef EE) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
H A DAlphaBranchSelector.cpp49 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
50 MBBI != EE; ++MBBI) {
/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp125 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); local
133 GenericValue gv = EE->runFunction(FooF, noargs);
137 delete EE;
/external/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp55 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end();
56 MBBI != EE; ++MBBI) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DScheduleDAGEmit.cpp47 EE = SU->Succs.end(); II != EE; ++II) {
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp119 ExecutionEngine *EE = local
124 if (!EE) {
143 GenericValue GV = EE->runFunction(FibF, Args);
/external/swiftshader/third_party/LLVM/examples/Fibonacci/
H A Dfibonacci.cpp106 ExecutionEngine *EE = local
112 if (!EE) {
131 GenericValue GV = EE->runFunction(FibF, Args);
/external/clang/examples/clang-interpreter/
H A Dmain.cpp59 std::unique_ptr<llvm::ExecutionEngine> EE(
61 if (!EE) {
76 EE->finalizeObject();
77 return EE->runFunctionAsMain(EntryFn, Args, envp);
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp133 ExecutionEngine* EE; member in struct:threadParams
253 GenericValue gv = p->EE->runFunction(p->F, Args);
270 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); local
276 struct threadParams add1 = { EE, add1F, 1000 };
277 struct threadParams fib1 = { EE, fibF, 39 };
278 struct threadParams fib2 = { EE, fibF, 42 };
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/
H A DParallelJIT.cpp116 ExecutionEngine* EE; member in struct:threadParams
232 GenericValue gv = p->EE->runFunction(p->F, Args);
248 ExecutionEngine* EE = EngineBuilder(M).create(); local
254 struct threadParams add1 = { EE, add1F, 1000 };
255 struct threadParams fib1 = { EE, fibF, 39 };
256 struct threadParams fib2 = { EE, fibF, 42 };
/external/swiftshader/third_party/LLVM/tools/lli/
H A Dlli.cpp145 static ExecutionEngine *EE = 0; variable
150 delete EE;
227 EE = builder.create();
228 if (!EE) {
230 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
232 errs() << argv[0] << ": unknown error creating EE!\n";
236 EE->RegisterJITEventListener(createOProfileJITEventListener());
238 EE->DisableLazyCompilation(NoLazyCompilation);
275 EE->runStaticConstructorsDestructors(false);
281 EE
[all...]
/external/llvm/tools/lli/
H A Dlli.cpp317 static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context, argument
347 EE.addModule(std::move(M));
462 std::unique_ptr<ExecutionEngine> EE(builder.create());
463 if (!EE) {
465 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
467 errs() << argv[0] << ": unknown error creating EE!\n";
474 EE->setObjectCache(CacheManager.get());
489 EE->addModule(std::move(XMod));
502 EE->addObjectFile(std::move(O));
528 EE
[all...]
/external/llvm/include/llvm/Support/
H A DGraphWriter.h71 child_iterator EE = GTraits::child_end(Node); local
74 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
88 if (EI != EE && hasEdgeSourceLabels)
231 child_iterator EE = GTraits::child_end(Node); local
232 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
235 for (; EI != EE; ++EI)
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DGraphWriter.h67 child_iterator EE = GTraits::child_end(Node); local
70 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
84 if (EI != EE && hasEdgeSourceLabels)
217 child_iterator EE = GTraits::child_end(Node); local
218 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
221 for (; EI != EE; ++EI)
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp68 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
69 MBBI != EE; ++MBBI)
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp69 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
70 MBBI != EE; ++MBBI)

Completed in 555 milliseconds

12345