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

12345

/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp68 EE(EngineBuilder(M)
74 const OwningPtr<ExecutionEngine> EE; member in class:__anon22763::JITEventListenerTest
92 EE->RegisterJITEventListener(&Listener);
96 void *F1_addr = EE->getPointerToFunction(F1);
97 void *F2_addr = EE->getPointerToFunction(F2);
98 EE->getPointerToFunction(F1); // Should do nothing.
99 EE->freeMachineCodeForFunction(F1);
100 EE->freeMachineCodeForFunction(F2);
137 EE->RegisterJITEventListener(&Listener1);
138 EE
[all...]
H A DJITEventListenerTestCommon.h62 llvm::ExecutionEngine* EE; member in class:JITEventListenerTestBase
69 , EE(llvm::EngineBuilder(M)
126 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
129 EE->freeMachineCodeForFunction(f);
140 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
146 EE->freeMachineCodeForFunction(f);
162 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
176 EE->freeMachineCodeForFunction(f);
191 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
202 EE
[all...]
H A DIntelJITEventListenerTest.cpp88 EE->RegisterJITEventListener(Listener.get());
/external/llvm/include/llvm-c/
H A DExecutionEngine.h130 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
132 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
134 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
136 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
140 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
144 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F);
146 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
149 void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP);
151 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
155 LLVMBool LLVMRemoveModuleProvider(LLVMExecutionEngineRef 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.cpp118 if (ExecutionEngine *EE = builder.create()){
119 *OutEE = wrap(EE);
240 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { argument
241 delete unwrap(EE);
244 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { argument
245 unwrap(EE)->runStaticConstructorsDestructors(false);
248 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { argument
249 unwrap(EE)->runStaticConstructorsDestructors(true);
252 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, argument
255 unwrap(EE)
264 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) argument
279 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) argument
283 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) argument
287 LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP) argument
292 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) argument
300 LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP, LLVMModuleRef *OutMod, char **OutError) argument
308 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) argument
317 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) argument
322 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) argument
326 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
331 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.h44 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE);
H A Dlp_bld_misc.cpp82 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE) argument
85 llvm::unwrap(EE)->RegisterJITEventListener(llvm::JITEventListener::createOProfileJITEventListener());
87 llvm::unwrap(EE)->RegisterJITEventListener(llvm::createOProfileJITEventListener());
/external/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/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_misc.h44 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE);
H A Dlp_bld_misc.cpp82 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE) argument
85 llvm::unwrap(EE)->RegisterJITEventListener(llvm::JITEventListener::createOProfileJITEventListener());
87 llvm::unwrap(EE)->RegisterJITEventListener(llvm::createOProfileJITEventListener());
/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/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c204 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { argument
205 LLVMDisposeExecutionEngine(EE);
210 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
211 LLVMAddModule(EE, M);
217 LLVMExecutionEngineRef EE) {
220 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error))
226 CAMLprim value llvm_ee_find_function(value Name, LLVMExecutionEngineRef EE) { argument
230 if (LLVMFindFunction(EE, String_val(Name), &Found))
239 LLVMExecutionEngineRef EE) {
249 Result = LLVMRunFunction(EE,
216 llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) argument
238 llvm_ee_run_function(LLVMValueRef F, value Args, LLVMExecutionEngineRef EE) argument
256 llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) argument
262 llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) argument
269 llvm_ee_run_function_as_main(LLVMValueRef F, value Args, value Env, LLVMExecutionEngineRef EE) argument
321 llvm_ee_free_machine_code(LLVMValueRef F, LLVMExecutionEngineRef EE) argument
[all...]
/external/qemu/
H A Dsockets.c73 EE(WSA_INVALID_HANDLE,EINVAL,"invalid handle") \
74 EE(WSA_NOT_ENOUGH_MEMORY,ENOMEM,"not enough memory") \
75 EE(WSA_INVALID_PARAMETER,EINVAL,"invalid parameter") \
76 EE(WSAEINTR,EINTR,"interrupted function call") \
77 EE(WSAEALREADY,EALREADY,"operation already in progress") \
78 EE(WSAEBADF,EBADF,"bad file descriptor") \
79 EE(WSAEACCES,EACCES,"permission denied") \
80 EE(WSAEFAULT,EFAULT,"bad address") \
81 EE(WSAEINVAL,EINVAL,"invalid argument") \
82 EE(WSAEMFIL
117 #define EE macro
119 #undef EE macro
[all...]
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp106 ExecutionEngine *EE = local
112 if (!EE) {
131 GenericValue GV = EE->runFunction(FibF, Args);
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp116 ExecutionEngine* EE; member in struct:threadParams
233 GenericValue gv = p->EE->runFunction(p->F, Args);
249 ExecutionEngine* EE = EngineBuilder(M).create(); local
255 struct threadParams add1 = { EE, add1F, 1000 };
256 struct threadParams fib1 = { EE, fibF, 39 };
257 struct threadParams fib2 = { EE, fibF, 42 };
/external/llvm/tools/lli/
H A Dlli.cpp202 static ExecutionEngine *EE = 0; variable
207 delete EE;
259 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first), Addr);
267 EE->finalizeObject();
401 EE = builder.create();
402 if (!EE) {
404 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
406 errs() << argv[0] << ": unknown error creating EE!\n";
412 EE->RegisterJITEventListener(
414 EE
[all...]
/external/clang/examples/clang-interpreter/
H A Dmain.cpp49 OwningPtr<llvm::ExecutionEngine> EE(
51 if (!EE) {
66 return EE->runFunctionAsMain(EntryFn, Args, envp);
/external/llvm/include/llvm/Support/
H A DGraphWriter.h72 child_iterator EE = GTraits::child_end(Node); local
75 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
89 if (EI != EE && hasEdgeSourceLabels)
230 child_iterator EE = GTraits::child_end(Node); local
231 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
234 for (; EI != EE; ++EI)
/external/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp68 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
69 MBBI != EE; ++MBBI)
/external/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp146 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end();
147 MII != EE; ++MII) {
163 EE = MI->memoperands_end(); MMOI != EE; ++MMOI) {
324 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end();
325 MII != EE; ++MII)
/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/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp78 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
79 MBBI != EE; ++MBBI)
/external/clang/test/Sema/
H A Dblock-return.c120 int (^EE) (void) = ^{ return i+1; }; // OK
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp82 EI = Entries.begin(), EE = Entries.end(); EI != EE; ++EI) {
243 EI = Entries.begin(), EE = Entries.end(); EI != EE; ++EI) {

Completed in 2106 milliseconds

12345