Searched defs:EE (Results 1 - 25 of 38) sorted by relevance

12

/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/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h46 virtual void notifyObjectLoaded(ExecutionEngine *EE, argument
/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/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/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/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/examples/Fibonacci/
H A Dfibonacci.cpp119 ExecutionEngine *EE = local
124 if (!EE) {
143 GenericValue GV = EE->runFunction(FibF, Args);
/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/examples/Fibonacci/
H A Dfibonacci.cpp106 ExecutionEngine *EE = local
112 if (!EE) {
131 GenericValue GV = EE->runFunction(FibF, Args);
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp286 std::map<std::string, std::vector<std::string> >::iterator IE, EE; local
287 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
/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/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeEmitterGen.cpp282 std::map<std::string, std::vector<std::string> >::iterator IE, EE; local
283 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
/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/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/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/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/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/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp238 Value *EE = Builder->CreateExtractElement(CI->getOperand(0), local
240 return CastInst::Create(CI->getOpcode(), EE, EI.getType());
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c148 double EE, double FF, double GG, double HH,
151 return X + Y + Z + AA + BB + CC + DD + EE + FF + GG + HH
146 MathFunc(double X, double Y, double Z, double AA, double BB, double CC, double DD, double EE, double FF, double GG, double HH, double aAA, double aBB, double aCC, double aDD, double aEE, double aFF) argument
/external/clang/test/SemaCXX/
H A Dusing-decl-1.cpp242 struct EE { int EE; }; member in struct:PR19171::EE
244 using E::EE; // expected-error-re {{no member named 'EE' in 'PR19171::E'{{$}}}}
/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/llvm/lib/CodeGen/
H A DMachineCSE.cpp290 MachineBasicBlock::const_iterator EE = CSMBB->end(); local
294 while (I != E && I != EE && I->isDebugValue())
297 if (I == EE) {
303 EE = MBB->end();
H A DAnalysis.cpp49 EE = STy->element_end();
50 EI != EE; ++EI) {
94 EE = STy->element_end(); local
95 EI != EE; ++EI) local
/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/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...]

Completed in 3161 milliseconds

12