/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 97 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local 98 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule() 166 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument 167 delete unwrap(EE); in LLVMDisposeExecutionEngine() 170 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument 171 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors() 174 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument 175 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors() 178 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain() argument 185 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain() [all …]
|
D | ExecutionEngine.cpp | 264 void *reset(LLVMContext &C, ExecutionEngine *EE, 268 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument 271 unsigned PtrSize = EE->getTargetData()->getPointerSize(); in reset() 287 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize), in reset() 292 EE->StoreValueToMemory(PTOGV(0), in reset() 346 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument 347 unsigned PtrSize = EE->getTargetData()->getPointerSize(); in isTargetNullPtr() 474 ExecutionEngine *EE = in create() local 477 if (EE) return EE; in create() 479 ExecutionEngine *EE = in create() local [all …]
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
D | JITEventListenerTest.cpp | 69 EE(EngineBuilder(M) in JITEventListenerTest() 75 const OwningPtr<ExecutionEngine> EE; member in __anon2c29d7ef0111::JITEventListenerTest 91 EE->RegisterJITEventListener(&Listener); in TEST_F() 95 void *F1_addr = EE->getPointerToFunction(F1); in TEST_F() 96 void *F2_addr = EE->getPointerToFunction(F2); in TEST_F() 97 EE->getPointerToFunction(F1); // Should do nothing. in TEST_F() 98 EE->freeMachineCodeForFunction(F1); in TEST_F() 99 EE->freeMachineCodeForFunction(F2); in TEST_F() 136 EE->RegisterJITEventListener(&Listener1); in TEST_F() 137 EE->RegisterJITEventListener(&Listener2); in TEST_F() [all …]
|
/external/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 87 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE); 89 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE); 91 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE); 93 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, 97 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, 101 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F); 103 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M); 106 void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP); 108 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, 112 LLVMBool LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE, [all …]
|
/external/llvm/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 201 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { in llvm_ee_dispose() argument 202 LLVMDisposeExecutionEngine(EE); in llvm_ee_dispose() 207 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module() argument 208 LLVMAddModule(EE, M); in llvm_ee_add_module() 214 LLVMExecutionEngineRef EE) { in llvm_ee_remove_module() argument 217 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error)) in llvm_ee_remove_module() 223 CAMLprim value llvm_ee_find_function(value Name, LLVMExecutionEngineRef EE) { in llvm_ee_find_function() argument 227 if (LLVMFindFunction(EE, String_val(Name), &Found)) in llvm_ee_find_function() 236 LLVMExecutionEngineRef EE) { in llvm_ee_run_function() argument 246 Result = LLVMRunFunction(EE, F, NumArgs, GVArgs); in llvm_ee_run_function() [all …]
|
/external/llvm/tools/lli/ |
D | lli.cpp | 128 static ExecutionEngine *EE = 0; variable 133 delete EE; in do_shutdown() 209 EE = builder.create(); in main() 210 if (!EE) { in main() 218 EE->RegisterJITEventListener(createOProfileJITEventListener()); in main() 220 EE->DisableLazyCompilation(NoLazyCompilation); in main() 257 EE->runStaticConstructorsDestructors(false); in main() 263 EE->getPointerToFunction(Fn); in main() 268 int Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp); in main() 271 EE->runStaticConstructorsDestructors(true); in main() [all …]
|
/external/qemu/ |
D | sockets.c | 73 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(WSAEMFILE,EMFILE,"too many opened files") \ [all …]
|
/external/speex/libspeex/ |
D | cb_search_sse.h | 57 __m128 resj, EE; in compute_weighted_codebook() local 68 EE = _mm_setzero_ps(); in compute_weighted_codebook() 80 EE = _mm_add_ps(EE, _mm_mul_ps(resj, resj)); in compute_weighted_codebook() 82 E[i>>2] = EE; in compute_weighted_codebook()
|
/external/llvm/examples/HowToUseJIT/ |
D | HowToUseJIT.cpp | 117 ExecutionEngine* EE = EngineBuilder(M).create(); in main() local 125 GenericValue gv = EE->runFunction(FooF, noargs); in main() 129 EE->freeMachineCodeForFunction(FooF); in main() 130 delete EE; in main()
|
/external/llvm/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 116 ExecutionEngine* EE; member 232 GenericValue gv = p->EE->runFunction(p->F, Args); in callFunc() 248 ExecutionEngine* EE = EngineBuilder(M).create(); in main() local 254 struct threadParams add1 = { EE, add1F, 1000 }; in main() 255 struct threadParams fib1 = { EE, fibF, 39 }; in main() 256 struct threadParams fib2 = { EE, fibF, 42 }; in main()
|
/external/llvm/include/llvm/Support/ |
D | GraphWriter.h | 67 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 70 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels() 84 if (EI != EE && hasEdgeSourceLabels) in getEdgeSourceLabels() 217 child_iterator EE = GTraits::child_end(Node); in writeNode() local 218 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode() 221 for (; EI != EE; ++EI) in writeNode()
|
/external/llvm/examples/Fibonacci/ |
D | fibonacci.cpp | 106 ExecutionEngine *EE = in main() local 112 if (!EE) { in main() 131 GenericValue GV = EE->runFunction(FibF, Args); in main()
|
/external/llvm/lib/CompilerDriver/ |
D | CompilationGraph.cpp | 329 for (Node::const_iterator EB = A->EdgesBegin(), EE = A->EdgesEnd(); in TopologicalSort() local 330 EB != EE; ++EB) { in TopologicalSort() 431 for (Node::const_iterator EB = N1.EdgesBegin(), EE = N1.EdgesEnd(); in CheckLanguageNames() local 432 EB != EE; ++EB) { in CheckLanguageNames() 495 for (Node::const_iterator EB = N.EdgesBegin(), EE = N.EdgesEnd(); in CheckMultipleDefaultEdges() local 496 EB != EE; ++EB) { in CheckMultipleDefaultEdges() 531 for (Node::iterator EB = A->EdgesBegin(), EE = A->EdgesEnd(); in CheckCycles() local 532 EB != EE; ++EB) { in CheckCycles()
|
/external/llvm/lib/Target/Alpha/ |
D | AlphaBranchSelector.cpp | 49 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local 50 MBBI != EE; ++MBBI) { in runOnMachineFunction()
|
/external/clang/examples/clang-interpreter/ |
D | main.cpp | 50 llvm::OwningPtr<llvm::ExecutionEngine> EE( in Execute() local 52 if (!EE) { in Execute() 67 return EE->runFunctionAsMain(EntryFn, Args, envp); in Execute()
|
/external/llvm/lib/CodeGen/ |
D | ScheduleDAGEmit.cpp | 47 EE = SU->Succs.end(); II != EE; ++II) { in EmitPhysRegCopy() local
|
D | Analysis.cpp | 46 EE = STy->element_end(); in ComputeLinearIndex() local 47 EI != EE; ++EI) { in ComputeLinearIndex() 84 EE = STy->element_end(); in ComputeValueVTs() local 85 EI != EE; ++EI) in ComputeValueVTs()
|
/external/llvm/lib/Analysis/ |
D | BranchProbabilityInfo.cpp | 224 EE = BackEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local 237 EE = ExitingEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCBranchSelector.cpp | 69 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local 70 MBBI != EE; ++MBBI) in runOnMachineFunction()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430BranchSelector.cpp | 68 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local 69 MBBI != EE; ++MBBI) in runOnMachineFunction()
|
/external/icu4c/data/translit/ |
D | Tamil_InterIndic.txt | 23 ஏ→\uE00F; # LETTER EE 57 ே→\uE047; # VOWEL SIGN EE
|
D | Gurmukhi_InterIndic.txt | 19 ਏ→\uE00F; # LETTER EE 63 \u0A47→\uE047; # VOWEL SIGN EE
|
D | Malayalam_InterIndic.txt | 21 ഏ→\uE00F; # LETTER EE 69 േ→\uE047; # VOWEL SIGN EE
|
/external/llvm/utils/TableGen/ |
D | CodeEmitterGen.cpp | 281 std::map<std::string, std::vector<std::string> >::iterator IE, EE; in run() local 282 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) { in run()
|
/external/llvm/test/FrontendC/ |
D | 2002-07-14-MiscTests3.c | 152 double EE, double FF, double GG, double HH, in MathFunc() argument 155 return X + Y + Z + AA + BB + CC + DD + EE + FF + GG + HH in MathFunc()
|