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

12

/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/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h105 virtual void notifyObjectLoaded(ExecutionEngine *EE, argument
H A DExecutionEngine.h72 ExecutionEngine ⅇ member in class:llvm::ExecutionEngineState
85 ExecutionEngineState(ExecutionEngine &EE);
279 "EE!");
332 /// used by clients of the EE that want to have an LLVM global overlay
366 /// getPointerToFunction - The different EE's represent function bodies in
376 /// getPointerToBasicBlock - The different EE's represent basic blocks in
/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/Fibonacci/
H A Dfibonacci.cpp106 ExecutionEngine *EE = local
112 if (!EE) {
131 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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
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/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTest.cpp65 EE(EngineBuilder(M)
71 const std::unique_ptr<ExecutionEngine> EE; member in class:__anon26477::JITEventListenerTest
89 EE->RegisterJITEventListener(&Listener);
93 void *F1_addr = EE->getPointerToFunction(F1);
94 void *F2_addr = EE->getPointerToFunction(F2);
95 EE->getPointerToFunction(F1); // Should do nothing.
96 EE->freeMachineCodeForFunction(F1);
97 EE->freeMachineCodeForFunction(F2);
134 EE->RegisterJITEventListener(&Listener1);
135 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...]
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp305 std::map<std::string, std::vector<std::string> >::iterator IE, EE; local
306 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
/external/mesa3d/src/gallium/auxiliary/gallivm/
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/clang/test/SemaCXX/
H A Dusing-decl-1.cpp244 struct EE { int EE; }; member in struct:PR19171::EE
246 using E::EE; // expected-error-re {{no member named 'EE' in 'PR19171::E'{{$}}}}
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp116 ExecutionEngine* EE; member in struct:threadParams
236 GenericValue gv = p->EE->runFunction(p->F, Args);
252 ExecutionEngine* EE = EngineBuilder(M).create(); local
258 struct threadParams add1 = { EE, add1F, 1000 };
259 struct threadParams fib1 = { EE, fibF, 39 };
260 struct threadParams fib2 = { EE, fibF, 42 };
/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/tools/lli/
H A DRemoteMemoryManager.cpp80 void RemoteMemoryManager::notifyObjectLoaded(ExecutionEngine *EE, argument
140 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first.MB.base()), Addr);
H A Dlli.cpp323 static ExecutionEngine *EE = nullptr; variable
329 delete EE;
341 static void addCygMingExtraModule(ExecutionEngine *EE, argument
372 EE->addModule(M);
498 EE = builder.create();
499 if (!EE) {
501 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
503 errs() << argv[0] << ": unknown error creating EE!\n";
509 EE->setObjectCache(CacheManager);
527 EE
[all...]
/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/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
330 llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) argument
[all...]
/external/llvm/lib/CodeGen/
H A DMachineCSE.cpp286 MachineBasicBlock::const_iterator EE = CSMBB->end(); local
290 while (I != E && I != EE && I->isDebugValue())
293 if (I == EE) {
299 EE = MBB->end();
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp116 if (ExecutionEngine *EE = builder.create()){
117 *OutEE = wrap(EE);
238 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { argument
239 delete unwrap(EE);
242 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { argument
243 unwrap(EE)->runStaticConstructorsDestructors(false);
246 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { argument
247 unwrap(EE)->runStaticConstructorsDestructors(true);
250 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, argument
253 unwrap(EE)
262 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) argument
277 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) argument
281 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) argument
285 LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP) argument
290 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) argument
298 LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP, LLVMModuleRef *OutMod, char **OutError) argument
306 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) argument
315 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) argument
320 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) argument
325 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) argument
329 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
334 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) argument
[all...]
H A DExecutionEngine.cpp272 void *reset(LLVMContext &C, ExecutionEngine *EE,
276 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, argument
279 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
295 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
300 EE->StoreValueToMemory(PTOGV(nullptr),
353 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { argument
354 unsigned PtrSize = EE->getDataLayout()->getPointerSize();
522 ExecutionEngine *EE = nullptr; local
524 EE = ExecutionEngine::MCJITCtor(M, ErrorStr, MCJMM ? MCJMM : JMM,
527 EE
1346 ExecutionEngineState(ExecutionEngine &EE) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp284 Value *EE = Builder->CreateExtractElement(CI->getOperand(0), local
286 Worklist.AddValue(EE);
287 return CastInst::Create(CI->getOpcode(), EE, EI.getType());
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp809 // If we have an EE, the EE owns the module so just delete the EE.
879 ExecutionEngine *EE = compileModule(*it); local
880 void *P = EE->getPointerToFunction(F);
970 ExecutionEngine *EE = compileModule(*it); local
971 void *P = EE->getPointerToFunction(F);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp972 // If we have an EE, the EE owns the module so just delete the EE.
1035 ExecutionEngine *EE = EngineBuilder(M) local
1040 if (!EE) {
1046 EE->setObjectCache(&OurObjectCache);
1059 FPM->add(new DataLayout(*EE->getDataLayout()));
1086 EE->finalizeObject();
1089 EngineMap[M] = EE;
1091 return EE;
1109 ExecutionEngine *EE = compileModule(*it); local
1141 ExecutionEngine *EE = compileModule(*it); local
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp720 // If we have an EE, the EE owns the module so just delete the EE.
790 ExecutionEngine *EE = compileModule(*it); local
791 void *P = EE->getPointerToFunction(F);
872 ExecutionEngine *EE = compileModule(*it); local
873 void *P = EE->getPointerToFunction(F);

Completed in 618 milliseconds

12