HomeSort by relevance Sort by last modified time
    Searched refs:EE (Results 1 - 25 of 81) 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->getDataLayout()->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->getDataLayout()->getPointerSize();
482 ExecutionEngine *EE =
485 if (EE) return EE;
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 68 EE(EngineBuilder(M)
74 const OwningPtr<ExecutionEngine> EE;
90 EE->RegisterJITEventListener(&Listener);
94 void *F1_addr = EE->getPointerToFunction(F1);
95 void *F2_addr = EE->getPointerToFunction(F2);
96 EE->getPointerToFunction(F1); // Should do nothing.
97 EE->freeMachineCodeForFunction(F1);
98 EE->freeMachineCodeForFunction(F2);
135 EE->RegisterJITEventListener(&Listener1);
136 EE->RegisterJITEventListener(&Listener2)
    [all...]
JITEventListenerTestCommon.h 62 llvm::ExecutionEngine* EE;
69 , EE(llvm::EngineBuilder(M)
126 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
129 EE->freeMachineCodeForFunction(f);
140 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
146 EE->freeMachineCodeForFunction(f);
162 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
176 EE->freeMachineCodeForFunction(f);
191 EXPECT_TRUE(0 != EE->getPointerToFunction(f));
202 EE->freeMachineCodeForFunction(f)
    [all...]
IntelJITEventListenerTest.cpp 88 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/llvm/tools/lli/
lli.cpp 201 static ExecutionEngine *EE = 0;
206 delete EE;
258 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first), Addr);
266 EE->finalizeObject();
390 EE = builder.create();
391 if (!EE) {
393 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
395 errs() << argv[0] << ": unknown error creating EE!\n";
401 EE->RegisterJITEventListener(
403 EE->RegisterJITEventListener
    [all...]
  /external/clang/examples/clang-interpreter/
main.cpp 48 OwningPtr<llvm::ExecutionEngine> EE(
50 if (!EE) {
65 return EE->runFunctionAsMain(EntryFn, Args, envp);
  /external/llvm/include/llvm/Support/
GraphWriter.h 71 child_iterator EE = GTraits::child_end(Node);
74 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
88 if (EI != EE && hasEdgeSourceLabels)
229 child_iterator EE = GTraits::child_end(Node);
230 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
233 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 78 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
79 MBBI != EE; ++MBBI)
  /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 310 std::map<std::string, std::vector<std::string> >::iterator IE, EE;
311 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {

Completed in 739 milliseconds

1 2 3 4