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

12

/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp117 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); local
125 GenericValue gv = EE->runFunction(FooF, noargs);
129 delete EE;
/external/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h43 virtual void notifyObjectLoaded(ExecutionEngine *EE, argument
/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.c63 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { argument
64 LLVMDisposeExecutionEngine(EE);
69 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
70 LLVMAddModule(EE, M);
75 CAMLprim value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
78 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error))
84 CAMLprim value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { argument
85 LLVMRunStaticConstructors(EE);
90 CAMLprim value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { argument
91 LLVMRunStaticDestructors(EE);
98 llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) argument
112 llvm_ee_add_global_mapping(LLVMValueRef Global, value Ptr, LLVMExecutionEngineRef EE) argument
118 llvm_ee_get_global_value_address(value Name, LLVMExecutionEngineRef EE) argument
123 llvm_ee_get_function_address(value Name, LLVMExecutionEngineRef EE) argument
[all...]
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp106 ExecutionEngine *EE = local
111 if (!EE) {
130 GenericValue GV = EE->runFunction(FibF, Args);
/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.cpp315 static ExecutionEngine *EE = nullptr; variable
321 delete EE;
333 static void addCygMingExtraModule(ExecutionEngine *EE, argument
364 EE->addModule(std::move(M));
474 EE = builder.create();
475 if (!EE) {
477 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
479 errs() << argv[0] << ": unknown error creating EE!\n";
485 EE->setObjectCache(CacheManager);
500 EE
[all...]
/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/utils/TableGen/
H A DCodeEmitterGen.cpp291 std::map<std::string, std::vector<std::string> >::iterator IE, EE; local
292 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/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp117 ExecutionEngine* EE; member in struct:threadParams
237 GenericValue gv = p->EE->runFunction(p->F, Args);
254 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); local
260 struct threadParams add1 = { EE, add1F, 1000 };
261 struct threadParams fib1 = { EE, fibF, 39 };
262 struct threadParams fib2 = { EE, fibF, 42 };
/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.cpp244 struct EE { int EE; }; member in struct:PR19171::EE
246 using E::EE; // expected-error-re {{no member named 'EE' in 'PR19171::E'{{$}}}}
H A Dattr-noreturn.cpp80 struct EE : virtual AA {}; struct in namespace:destructor_tests
82 struct GG : EE {};
97 EE e;
113 const EE& ee = EE();
/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 DAnalysis.cpp50 EE = STy->element_end();
51 EI != EE; ++EI) {
95 EE = STy->element_end(); local
96 EI != EE; ++EI) local
H A DMachineCSE.cpp294 MachineBasicBlock::const_iterator EE = CSMBB->end(); local
298 while (I != E && I != EE && I->isDebugValue())
301 if (I == EE) {
307 EE = MBB->end();
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp109 if (ExecutionEngine *EE = builder.create()){
110 *OutEE = wrap(EE);
213 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { argument
214 delete unwrap(EE);
217 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { argument
218 unwrap(EE)->runStaticConstructorsDestructors(false);
221 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { argument
222 unwrap(EE)->runStaticConstructorsDestructors(true);
225 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, argument
228 unwrap(EE)
234 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) argument
249 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) argument
252 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) argument
256 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) argument
264 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) argument
273 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) argument
278 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) argument
283 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) argument
287 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
292 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) argument
298 LLVMGetGlobalValueAddress(LLVMExecutionEngineRef EE, const char *Name) argument
302 LLVMGetFunctionAddress(LLVMExecutionEngineRef EE, const char *Name) argument
[all...]
H A DExecutionEngine.cpp336 void *reset(LLVMContext &C, ExecutionEngine *EE,
340 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, argument
344 unsigned PtrSize = EE->getDataLayout().getPointerSize();
359 EE->StoreValueToMemory(PTOGV(Dest.get()),
365 EE->StoreValueToMemory(PTOGV(nullptr),
418 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { argument
419 unsigned PtrSize = EE->getDataLayout().getPointerSize();
543 ExecutionEngine *EE = nullptr; local
545 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
548 EE
[all...]
/external/opencv3/modules/calib3d/src/
H A Dfive-point.cpp61 Mat EE = Mat(Vt.t()).colRange(5, 9) * 1.0; local
63 EE = EE.t();
64 getCoeffMat(EE.ptr<double>(), A.ptr<double>());
65 EE = EE.t();
137 cv::Mat Evec = EE.col(0) * xs.back() + EE.col(1) * ys.back() + EE.col(2) * zs.back() + EE
[all...]
/external/clang/test/Analysis/
H A Dpr22954.c217 struct EE { struct
223 struct EE E0 = {{{1, 2}, {3, 4}}, 0};
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp236 Value *EE = Builder->CreateExtractElement(CI->getOperand(0), local
238 Worklist.AddValue(EE);
239 return CastInst::Create(CI->getOpcode(), EE, EI.getType());
812 // Input: |AA|BB|CC|DD|EE|FF|GG|HH|II|JJ|KK|LL|MM|NN|OO|PP|
813 // Shuffles to: |EE|FF|GG|HH|
/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);
969 ExecutionEngine *EE = compileModule(*it); local
970 void *P = EE->getPointerToFunction(F);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp877 // If we have an EE, the EE owns the module so just delete the EE.
940 ExecutionEngine *EE = EngineBuilder(M) local
944 if (!EE) {
950 EE->setObjectCache(&OurObjectCache);
963 FPM->add(new DataLayout(*EE->getDataLayout()));
990 EE->finalizeObject();
993 EngineMap[M] = EE;
995 return EE;
1013 ExecutionEngine *EE = compileModule(*it); local
1045 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);
871 ExecutionEngine *EE = compileModule(*it); local
872 void *P = EE->getPointerToFunction(F);

Completed in 1141 milliseconds

12