HomeSort by relevance Sort by last modified time
    Searched refs:EE (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/llvm/include/llvm-c/
ExecutionEngine.h 94 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/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 95 if (ExecutionEngine *EE = builder.create()){
96 *OutEE = wrap(EE);
164 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) {
165 delete unwrap(EE);
168 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) {
169 unwrap(EE)->runStaticConstructorsDestructors(false);
172 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) {
173 unwrap(EE)->runStaticConstructorsDestructors(true);
176 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
183 return unwrap(EE)->runFunctionAsMain(unwrap<Function>(F), ArgVec, EnvP)
    [all...]
ExecutionEngine.cpp 263 void *reset(LLVMContext &C, ExecutionEngine *EE,
267 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE,
270 unsigned PtrSize = EE->getTargetData()->getPointerSize();
286 EE->StoreValueToMemory(PTOGV(Dest), (GenericValue*)(Array+i*PtrSize),
291 EE->StoreValueToMemory(PTOGV(0),
344 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) {
345 unsigned PtrSize = EE->getTargetData()->getPointerSize();
482 ExecutionEngine *EE =
485 if (EE) return EE;
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 69 EE(EngineBuilder(M)
75 const OwningPtr<ExecutionEngine> EE;
91 EE->RegisterJITEventListener(&Listener);
95 void *F1_addr = EE->getPointerToFunction(F1);
96 void *F2_addr = EE->getPointerToFunction(F2);
97 EE->getPointerToFunction(F1); // Should do nothing.
98 EE->freeMachineCodeForFunction(F1);
99 EE->freeMachineCodeForFunction(F2);
136 EE->RegisterJITEventListener(&Listener1);
137 EE->RegisterJITEventListener(&Listener2)
    [all...]
JITEventListenerTestCommon.h 64 llvm::ExecutionEngine* EE;
71 , EE(llvm::EngineBuilder(M)
128 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
131 EE->freeMachineCodeForFunction(f);
142 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
148 EE->freeMachineCodeForFunction(f);
164 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
178 EE->freeMachineCodeForFunction(f);
193 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
204 EE->freeMachineCodeForFunction(f)
    [all...]
IntelJITEventListenerTest.cpp 85 EE->RegisterJITEventListener(Listener.get());
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 44 enum class EE { EE32 = ' ', EE65 = 'A', EE1 = (short)1, EE5 = E5 };
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/HowToUseJIT/
HowToUseJIT.cpp 117 ExecutionEngine* EE = EngineBuilder(M).create();
125 GenericValue gv = EE->runFunction(FooF, noargs);
129 EE->freeMachineCodeForFunction(FooF);
130 delete EE;
  /external/speex/libspeex/
cb_search_sse.h 57 __m128 resj, EE;
68 EE = _mm_setzero_ps();
80 EE = _mm_add_ps(EE, _mm_mul_ps(resj, resj));
82 E[i>>2] = EE;
  /sdk/emulator/opengl/tests/emulator_test_renderer/
main.cpp 204 #define EE(x,y) SDLK_##x, EventInjector::KEY_##y,
206 EE(LEFT,LEFT)
207 EE(RIGHT,RIGHT)
208 EE(DOWN,DOWN)
209 EE(UP,UP)
210 EE(RETURN,ENTER)
211 EE(F1,SOFT1)
212 EE(ESCAPE,BACK)
213 EE(HOME,HOME)
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 204 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) {
205 LLVMDisposeExecutionEngine(EE);
210 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) {
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) {
230 if (LLVMFindFunction(EE, String_val(Name), &Found))
239 LLVMExecutionEngineRef EE) {
249 Result = LLVMRunFunction(EE, F, NumArgs, GVArgs)
    [all...]
  /external/qemu/
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...]
  /sdk/emulator/opengl/tests/event_injector/
sockets.c 80 EE(WSA_INVALID_HANDLE,EINVAL,"invalid handle") \
81 EE(WSA_NOT_ENOUGH_MEMORY,ENOMEM,"not enough memory") \
82 EE(WSA_INVALID_PARAMETER,EINVAL,"invalid parameter") \
83 EE(WSAEINTR,EINTR,"interrupted function call") \
84 EE(WSAEALREADY,EALREADY,"operation already in progress") \
85 EE(WSAEBADF,EBADF,"bad file descriptor") \
86 EE(WSAEACCES,EACCES,"permission denied") \
87 EE(WSAEFAULT,EFAULT,"bad address") \
88 EE(WSAEINVAL,EINVAL,"invalid argument") \
89 EE(WSAEMFILE,EMFILE,"too many opened files")
    [all...]
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 106 ExecutionEngine *EE =
112 if (!EE) {
131 GenericValue GV = EE->runFunction(FibF, Args);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 116 ExecutionEngine* EE;
233 GenericValue gv = p->EE->runFunction(p->F, Args);
249 ExecutionEngine* EE = EngineBuilder(M).create();
255 struct threadParams add1 = { EE, add1F, 1000 };
256 struct threadParams fib1 = { EE, fibF, 39 };
257 struct threadParams fib2 = { EE, fibF, 42 };
  /external/clang/examples/clang-interpreter/
main.cpp 49 OwningPtr<llvm::ExecutionEngine> EE(
51 if (!EE) {
66 return EE->runFunctionAsMain(EntryFn, Args, envp);
  /external/llvm/include/llvm/Support/
GraphWriter.h 67 child_iterator EE = GTraits::child_end(Node);
70 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
84 if (EI != EE && hasEdgeSourceLabels)
217 child_iterator EE = GTraits::child_end(Node);
218 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
221 for (; EI != EE; ++EI)
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 68 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
69 MBBI != EE; ++MBBI)
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 255 EE = BackEdges.end(); EI != EE; ++EI) {
266 EE = InEdges.end(); EI != EE; ++EI) {
277 EE = ExitingEdges.end(); EI != EE; ++EI) {
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 148 double EE, double FF, double GG, double HH,
151 return X + Y + Z + AA + BB + CC + DD + EE + FF + GG + HH
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 69 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
70 MBBI != EE; ++MBBI)
  /external/llvm/tools/lli/
lli.cpp 192 static ExecutionEngine *EE = 0;
197 delete EE;
435 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first), Addr);
555 EE = builder.create();
556 if (!EE) {
558 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
560 errs() << argv[0] << ": unknown error creating EE!\n";
566 EE->RegisterJITEventListener(
568 EE->RegisterJITEventListener(
575 EE->DisableLazyCompilation(NoLazyCompilation)
    [all...]
  /external/clang/test/Sema/
block-return.c 120 int (^EE) (void) = ^{ return i+1; }; // OK
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.cpp 82 EI = Entries.begin(), EE = Entries.end(); EI != EE; ++EI) {
243 EI = Entries.begin(), EE = Entries.end(); EI != EE; ++EI) {
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 307 std::map<std::string, std::vector<std::string> >::iterator IE, EE;
308 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {

Completed in 1243 milliseconds

1 2 3 4