Home
last modified time | relevance | path

Searched refs:EE (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/external/llvm/lib/ExecutionEngine/
DExecutionEngineBindings.cpp95 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local
96 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule()
164 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument
165 delete unwrap(EE); in LLVMDisposeExecutionEngine()
168 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument
169 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors()
172 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument
173 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors()
176 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain() argument
183 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP); in LLVMRunFunctionAsMain()
[all …]
DExecutionEngine.cpp263 void *reset(LLVMContext &C, ExecutionEngine *EE,
267 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument
270 unsigned PtrSize = EE->getTargetData()->getPointerSize(); in reset()
286 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize), in reset()
291 EE->StoreValueToMemory(PTOGV(0), in reset()
344 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument
345 unsigned PtrSize = EE->getTargetData()->getPointerSize(); in isTargetNullPtr()
482 ExecutionEngine *EE = in create() local
485 if (EE) return EE; in create()
487 ExecutionEngine *EE = in create() local
[all …]
/external/llvm/unittests/ExecutionEngine/JIT/
DJITEventListenerTest.cpp69 EE(EngineBuilder(M) in JITEventListenerTest()
75 const OwningPtr<ExecutionEngine> EE; member in __anoncd1015300111::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 …]
DJITEventListenerTestCommon.h64 llvm::ExecutionEngine* EE; variable
71 , EE(llvm::EngineBuilder(M) in JITEventListenerTestBase()
128 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestNoDebugInfo()
131 EE->freeMachineCodeForFunction(f); in TestNoDebugInfo()
142 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestSingleLine()
148 EE->freeMachineCodeForFunction(f); in TestSingleLine()
164 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestMultipleLines()
178 EE->freeMachineCodeForFunction(f); in TestMultipleLines()
193 EXPECT_TRUE(0 != EE->getPointerToFunction(f)); in TestMultipleFiles()
204 EE->freeMachineCodeForFunction(f); in TestMultipleFiles()
/external/llvm/include/llvm-c/
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/bindings/ocaml/executionengine/
Dexecutionengine_ocaml.c201 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/clang/test/CXX/expr/expr.const/
Dp3-0x.cpp44 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/
Dlli.cpp168 static ExecutionEngine *EE = 0; variable
173 delete EE; in do_shutdown()
260 EE = builder.create(); in main()
261 if (!EE) { in main()
271 EE->RegisterJITEventListener( in main()
273 EE->RegisterJITEventListener( in main()
276 EE->DisableLazyCompilation(NoLazyCompilation); in main()
313 EE->runStaticConstructorsDestructors(false); in main()
319 EE->getPointerToFunction(Fn); in main()
324 int Result = EE->runFunctionAsMain(EntryFn, InputArgv, envp); in main()
[all …]
/external/qemu/
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(WSAEMFILE,EMFILE,"too many opened files") \
[all …]
/external/speex/libspeex/
Dcb_search_sse.h57 __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/
DHowToUseJIT.cpp117 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/
DParallelJIT.cpp116 ExecutionEngine* EE; member
233 GenericValue gv = p->EE->runFunction(p->F, Args); in callFunc()
249 ExecutionEngine* EE = EngineBuilder(M).create(); in main() local
255 struct threadParams add1 = { EE, add1F, 1000 }; in main()
256 struct threadParams fib1 = { EE, fibF, 39 }; in main()
257 struct threadParams fib2 = { EE, fibF, 42 }; in main()
/external/llvm/include/llvm/Support/
DGraphWriter.h67 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/
Dfibonacci.cpp106 ExecutionEngine *EE = in main() local
112 if (!EE) { in main()
131 GenericValue GV = EE->runFunction(FibF, Args); in main()
/external/clang/examples/clang-interpreter/
Dmain.cpp49 OwningPtr<llvm::ExecutionEngine> EE( in Execute() local
51 if (!EE) { in Execute()
66 return EE->runFunctionAsMain(EntryFn, Args, envp); in Execute()
/external/llvm/lib/Analysis/
DBranchProbabilityInfo.cpp243 EE = BackEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local
255 EE = InEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local
267 EE = ExitingEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local
/external/llvm/lib/CodeGen/
DAnalysis.cpp47 EE = STy->element_end(); in ComputeLinearIndex() local
48 EI != EE; ++EI) { in ComputeLinearIndex()
85 EE = STy->element_end(); in ComputeValueVTs() local
86 EI != EE; ++EI) in ComputeValueVTs()
DLiveIntervalAnalysis.cpp1253 for (RangeSet::iterator EI = Entering.begin(), EE = Entering.end(); in createBundleRanges() local
1254 EI != EE; ++EI) { in createBundleRanges()
1271 for (RangeSet::iterator EI = Exiting.begin(), EE = Exiting.end(); in createBundleRanges() local
1272 EI != EE; ++EI) { in createBundleRanges()
1348 for (RangeSet::iterator EI = Entering.begin(), EE = Entering.end(); in moveAllEnteringFrom() local
1349 EI != EE; ++EI) in moveAllEnteringFrom()
1352 for (RangeSet::iterator EI = Entering.begin(), EE = Entering.end(); in moveAllEnteringFrom() local
1353 EI != EE; ++EI) in moveAllEnteringFrom()
1389 for (RangeSet::iterator EI = Exiting.begin(), EE = Exiting.end(); in moveAllExitingFrom() local
1390 EI != EE; ++EI) in moveAllExitingFrom()
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfAccelTable.cpp82 EI = Entries.begin(), EE = Entries.end(); EI != EE; ++EI) { in FinalizeTable() local
243 EI = Entries.begin(), EE = Entries.end(); EI != EE; ++EI) { in print() local
/external/llvm/lib/Target/MSP430/
DMSP430BranchSelector.cpp68 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local
69 MBBI != EE; ++MBBI) in runOnMachineFunction()
/external/llvm/lib/Target/PowerPC/
DPPCBranchSelector.cpp69 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local
70 MBBI != EE; ++MBBI) in runOnMachineFunction()
/external/icu4c/data/translit/
DTamil_InterIndic.txt23 ஏ→\uE00F; # LETTER EE
57 ே→\uE047; # VOWEL SIGN EE
/external/llvm/utils/TableGen/
DCodeEmitterGen.cpp285 std::map<std::string, std::vector<std::string> >::iterator IE, EE; in run() local
286 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) { in run()
/external/icu4c/data/misc/
Dmetadata.txt118 "EE",
398 233{"EE"}
567 810{"RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ"}
668 EST{"EE"}
820 SU{"RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ"}
821 SUN{"RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ"}
/external/clang/test/CodeGen/
D2002-07-14-MiscTests3.c148 double EE, double FF, double GG, double HH, in MathFunc() argument
151 return X + Y + Z + AA + BB + CC + DD + EE + FF + GG + HH in MathFunc()

12345678910>>...12