/external/llvm/unittests/ExecutionEngine/JIT/ |
D | JITEventListenerTest.cpp | 65 EE(EngineBuilder(M) in JITEventListenerTest() 71 const std::unique_ptr<ExecutionEngine> EE; member in __anon9f9469700111::JITEventListenerTest 89 EE->RegisterJITEventListener(&Listener); in TEST_F() 93 void *F1_addr = EE->getPointerToFunction(F1); in TEST_F() 94 void *F2_addr = EE->getPointerToFunction(F2); in TEST_F() 95 EE->getPointerToFunction(F1); // Should do nothing. in TEST_F() 96 EE->freeMachineCodeForFunction(F1); in TEST_F() 97 EE->freeMachineCodeForFunction(F2); in TEST_F() 134 EE->RegisterJITEventListener(&Listener1); in TEST_F() 135 EE->RegisterJITEventListener(&Listener2); in TEST_F() [all …]
|
D | JITEventListenerTestCommon.h | 62 llvm::ExecutionEngine* EE; variable 69 , EE(llvm::EngineBuilder(M) in JITEventListenerTestBase() 126 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestNoDebugInfo() 129 EE->freeMachineCodeForFunction(f); in TestNoDebugInfo() 140 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestSingleLine() 146 EE->freeMachineCodeForFunction(f); in TestSingleLine() 162 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestMultipleLines() 176 EE->freeMachineCodeForFunction(f); in TestMultipleLines() 191 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestMultipleFiles() 202 EE->freeMachineCodeForFunction(f); in TestMultipleFiles()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngineBindings.cpp | 116 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local 117 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule() 238 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument 239 delete unwrap(EE); in LLVMDisposeExecutionEngine() 242 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument 243 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors() 246 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument 247 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors() 250 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain() argument 253 unwrap(EE)->finalizeObject(); in LLVMRunFunctionAsMain() [all …]
|
D | ExecutionEngine.cpp | 272 void *reset(LLVMContext &C, ExecutionEngine *EE, 276 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument 279 unsigned PtrSize = EE->getDataLayout()->getPointerSize(); in reset() 295 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize), in reset() 300 EE->StoreValueToMemory(PTOGV(nullptr), in reset() 353 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument 354 unsigned PtrSize = EE->getDataLayout()->getPointerSize(); in isTargetNullPtr() 522 ExecutionEngine *EE = nullptr; in create() local 524 EE = ExecutionEngine::MCJITCtor(M, ErrorStr, MCJMM ? MCJMM : JMM, in create() 527 EE = ExecutionEngine::JITCtor(M, ErrorStr, JMM, in create() [all …]
|
/external/llvm/include/llvm-c/ |
D | ExecutionEngine.h | 130 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/llvm/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 204 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { in llvm_ee_dispose() argument 205 LLVMDisposeExecutionEngine(EE); in llvm_ee_dispose() 210 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module() argument 211 LLVMAddModule(EE, M); in llvm_ee_add_module() 217 LLVMExecutionEngineRef EE) { in llvm_ee_remove_module() argument 220 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error)) in llvm_ee_remove_module() 226 CAMLprim value llvm_ee_find_function(value Name, LLVMExecutionEngineRef EE) { in llvm_ee_find_function() argument 230 if (LLVMFindFunction(EE, String_val(Name), &Found)) in llvm_ee_find_function() 239 LLVMExecutionEngineRef EE) { in llvm_ee_run_function() argument 249 Result = LLVMRunFunction(EE, F, NumArgs, GVArgs); in llvm_ee_run_function() [all …]
|
/external/clang/test/CXX/expr/expr.const/ |
D | p3-0x.cpp | 44 enum class EE { EE32 = ' ', EE65 = 'A', EE1 = (short)1, EE5 = E5 }; enum 50 case EE::EE32: // expected-error {{not implicitly convertible}} in b() 51 case (int)EE::EE32: in b() 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/tools/lli/ |
D | lli.cpp | 323 static ExecutionEngine *EE = nullptr; variable 329 delete EE; in do_shutdown() 341 static void addCygMingExtraModule(ExecutionEngine *EE, in addCygMingExtraModule() argument 372 EE->addModule(M); in addCygMingExtraModule() 498 EE = builder.create(); in main() 499 if (!EE) { in main() 509 EE->setObjectCache(CacheManager); in main() 527 EE->addModule(XMod); in main() 537 EE->addObjectFile(std::unique_ptr<object::ObjectFile>(Obj.get())); in main() 553 EE->addArchive(Ar); in main() [all …]
|
/external/qemu/android/ |
D | sockets.c | 74 EE(WSA_INVALID_HANDLE,EINVAL,"invalid handle") \ 75 EE(WSA_NOT_ENOUGH_MEMORY,ENOMEM,"not enough memory") \ 76 EE(WSA_INVALID_PARAMETER,EINVAL,"invalid parameter") \ 77 EE(WSAEINTR,EINTR,"interrupted function call") \ 78 EE(WSAEALREADY,EALREADY,"operation already in progress") \ 79 EE(WSAEBADF,EBADF,"bad file descriptor") \ 80 EE(WSAEACCES,EACCES,"permission denied") \ 81 EE(WSAEFAULT,EFAULT,"bad address") \ 82 EE(WSAEINVAL,EINVAL,"invalid argument") \ 83 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/chromium_org/third_party/angle/projects/src/ |
D | angle.sln | 3 …0-8D11-00A0C91BC942}") = "commit_id", "commit_id.vcxproj", "{3B7F5656-177F-52EE-26B3-D6A75368D0A9}" 15 {3B7F5656-177F-52EE-26B3-D6A75368D0A9} = {3B7F5656-177F-52EE-26B3-D6A75368D0A9} 21 {3B7F5656-177F-52EE-26B3-D6A75368D0A9} = {3B7F5656-177F-52EE-26B3-D6A75368D0A9} 54 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Debug|Win32.ActiveCfg = Debug|Win32 55 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Debug|Win32.Build.0 = Debug|Win32 56 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Release|Win32.ActiveCfg = Release|Win32 57 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Release|Win32.Build.0 = Release|Win32
|
/external/llvm/examples/ParallelJIT/ |
D | ParallelJIT.cpp | 116 ExecutionEngine* EE; member 236 GenericValue gv = p->EE->runFunction(p->F, Args); in callFunc() 252 ExecutionEngine* EE = EngineBuilder(M).create(); in main() local 258 struct threadParams add1 = { EE, add1F, 1000 }; in main() 259 struct threadParams fib1 = { EE, fibF, 39 }; in main() 260 struct threadParams fib2 = { EE, fibF, 42 }; in main()
|
/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/include/llvm/Support/ |
D | GraphWriter.h | 72 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 75 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels() 89 if (EI != EE && hasEdgeSourceLabels) in getEdgeSourceLabels() 230 child_iterator EE = GTraits::child_end(Node); in writeNode() local 231 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode() 234 for (; EI != EE; ++EI) in writeNode()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_misc.cpp | 82 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE) in lp_register_oprofile_jit_event_listener() argument 85 …llvm::unwrap(EE)->RegisterJITEventListener(llvm::JITEventListener::createOProfileJITEventListener(… in lp_register_oprofile_jit_event_listener() 87 llvm::unwrap(EE)->RegisterJITEventListener(llvm::createOProfileJITEventListener()); in lp_register_oprofile_jit_event_listener()
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
D | lp_bld_misc.cpp | 82 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE) in lp_register_oprofile_jit_event_listener() argument 85 …llvm::unwrap(EE)->RegisterJITEventListener(llvm::JITEventListener::createOProfileJITEventListener(… in lp_register_oprofile_jit_event_listener() 87 llvm::unwrap(EE)->RegisterJITEventListener(llvm::createOProfileJITEventListener()); in lp_register_oprofile_jit_event_listener()
|
/external/llvm/lib/Target/XCore/ |
D | XCoreFrameToArgsOffsetElim.cpp | 51 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local 52 MBBI != EE; ++MBBI) { in runOnMachineFunction()
|
/external/clang/examples/clang-interpreter/ |
D | main.cpp | 49 std::unique_ptr<llvm::ExecutionEngine> EE( in Execute() local 51 if (!EE) { in Execute() 66 return EE->runFunctionAsMain(EntryFn, Args, envp); in Execute()
|
/external/clang/test/SemaCXX/ |
D | using-decl-1.cpp | 244 struct EE { int EE; }; argument 246 using E::EE; // expected-error-re {{no member named 'EE' in 'PR19171::E'{{$}}}}
|
/external/llvm/lib/CodeGen/ |
D | StackSlotColoring.cpp | 146 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end(); in ScanForSpillSlotRefs() local 147 MII != EE; ++MII) { in ScanForSpillSlotRefs() 163 EE = MI->memoperands_end(); MMOI != EE; ++MMOI) { in ScanForSpillSlotRefs() local 323 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end(); in ColorSlots() local 324 MII != EE; ++MII) in ColorSlots()
|
/external/llvm/test/CodeGen/X86/ |
D | avx512-nontemporal.ll | 3 …<16 x float> %AA, i8* %B, <8 x double> %C, <8 x double> %CC, i32 %D, <8 x i64> %E, <8 x i64> %EE) { 10 %E2 = add <8 x i64> %E, %EE
|
/external/llvm/lib/Analysis/ |
D | BranchProbabilityInfo.cpp | 335 EE = BackEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local 346 EE = InEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local 357 EE = ExitingEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfAccelTable.cpp | 72 for (StringMap<DataArray>::iterator EI = Entries.begin(), EE = Entries.end(); in FinalizeTable() local 73 EI != EE; ++EI) { in FinalizeTable() 234 EE = Entries.end(); in print() local 235 EI != EE; ++EI) { in print()
|
/external/chromium_org/third_party/angle/projects/build/ |
D | all.sln | 10 {3B7F5656-177F-52EE-26B3-D6A75368D0A9} = {3B7F5656-177F-52EE-26B3-D6A75368D0A9} 32 …00A0C91BC942}") = "commit_id", "..\src\commit_id.vcxproj", "{3B7F5656-177F-52EE-26B3-D6A75368D0A9}" 67 {3B7F5656-177F-52EE-26B3-D6A75368D0A9} = {3B7F5656-177F-52EE-26B3-D6A75368D0A9} 73 {3B7F5656-177F-52EE-26B3-D6A75368D0A9} = {3B7F5656-177F-52EE-26B3-D6A75368D0A9} 209 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Debug|Win32.ActiveCfg = Debug|Win32 210 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Debug|Win32.Build.0 = Debug|Win32 211 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Release|Win32.ActiveCfg = Release|Win32 212 {3B7F5656-177F-52EE-26B3-D6A75368D0A9}.Release|Win32.Build.0 = Release|Win32
|