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

123

/external/llvm/include/llvm-c/
H A DExecutionEngine.h94 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
96 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
98 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
100 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
104 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
108 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F);
110 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
113 void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP);
115 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
119 LLVMBool LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE,
[all...]
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp95 if (ExecutionEngine *EE = builder.create()){
96 *OutEE = wrap(EE);
164 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { argument
165 delete unwrap(EE);
168 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { argument
169 unwrap(EE)->runStaticConstructorsDestructors(false);
172 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { argument
173 unwrap(EE)->runStaticConstructorsDestructors(true);
176 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, argument
183 return unwrap(EE)
186 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) argument
199 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) argument
203 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) argument
207 LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP) argument
212 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) argument
220 LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP, LLVMModuleRef *OutMod, char **OutError) argument
228 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) argument
237 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) argument
241 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) argument
245 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
250 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) argument
[all...]
H A DExecutionEngine.cpp263 void *reset(LLVMContext &C, ExecutionEngine *EE,
267 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, argument
270 unsigned PtrSize = EE->getTargetData()->getPointerSize();
286 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
291 EE->StoreValueToMemory(PTOGV(0),
344 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { argument
345 unsigned PtrSize = EE->getTargetData()->getPointerSize();
482 ExecutionEngine *EE = local
485 if (EE) return EE;
487 ExecutionEngine *EE = local
1135 ExecutionEngineState(ExecutionEngine &EE) argument
[all...]
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp69 EE(EngineBuilder(M)
75 const OwningPtr<ExecutionEngine> EE; member in class:__anon9255::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...]
H A DJITEventListenerTestCommon.h64 llvm::ExecutionEngine* EE; member in class:JITEventListenerTestBase
71 , EE(llvm::EngineBuilder(M)
128 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
131 EE->freeMachineCodeForFunction(f);
142 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
148 EE->freeMachineCodeForFunction(f);
164 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
178 EE->freeMachineCodeForFunction(f);
193 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
204 EE
[all...]
H A DIntelJITEventListenerTest.cpp85 EE->RegisterJITEventListener(Listener.get());
/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/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/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/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.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/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp68 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
69 MBBI != EE; ++MBBI)
/external/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp255 EE = BackEdges.end(); EI != EE; ++EI) {
266 EE = InEdges.end(); EI != EE; ++EI) {
277 EE = ExitingEdges.end(); EI != EE; ++EI) {
/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.cpp69 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
70 MBBI != EE; ++MBBI)
/external/llvm/tools/lli/
H A Dlli.cpp192 static ExecutionEngine *EE = 0; variable
197 delete EE;
435 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first), Addr);
555 EE = builder.create();
556 if (!EE) {
558 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
560 errs() << argv[0] << ": unknown error creating EE!\n";
566 EE->RegisterJITEventListener(
568 EE->RegisterJITEventListener(
575 EE
[all...]
/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) {
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp307 std::map<std::string, std::vector<std::string> >::iterator IE, EE; local
308 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
/external/llvm/lib/CodeGen/
H A DAnalysis.cpp47 EE = STy->element_end();
48 EI != EE; ++EI) {
85 EE = STy->element_end();
86 EI != EE; ++EI)
H A DLiveIntervalAnalysis.cpp1146 for (RangeSet::iterator EI = Entering.begin(), EE = Entering.end();
1147 EI != EE; ++EI) {
1164 for (RangeSet::iterator EI = Exiting.begin(), EE = Exiting.end();
1165 EI != EE; ++EI) {
1242 for (RangeSet::iterator EI = Entering.begin(), EE = Entering.end();
1243 EI != EE; ++EI)
1246 for (RangeSet::iterator EI = Entering.begin(), EE = Entering.end();
1247 EI != EE; ++EI)
1283 for (RangeSet::iterator EI = Exiting.begin(), EE = Exiting.end();
1284 EI != EE;
[all...]

Completed in 897 milliseconds

123