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

1 2 3 4 5

  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 63 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) {
64 LLVMDisposeExecutionEngine(EE);
69 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) {
70 LLVMAddModule(EE, M);
75 CAMLprim value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) {
78 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error))
84 CAMLprim value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) {
85 LLVMRunStaticConstructors(EE);
90 CAMLprim value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) {
91 LLVMRunStaticDestructors(EE);
    [all...]
  /external/llvm/include/llvm-c/
ExecutionEngine.h 113 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
115 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
117 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
119 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
123 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
127 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F);
129 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
131 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
134 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
137 void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,
    [all...]
  /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/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 109 if (ExecutionEngine *EE = builder.create()){
110 *OutEE = wrap(EE);
213 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) {
214 delete unwrap(EE);
217 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) {
218 unwrap(EE)->runStaticConstructorsDestructors(false);
221 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) {
222 unwrap(EE)->runStaticConstructorsDestructors(true);
225 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
228 unwrap(EE)->finalizeObject()
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.h 44 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE);
lp_bld_misc.cpp 82 lp_register_oprofile_jit_event_listener(LLVMExecutionEngineRef EE)
85 llvm::unwrap(EE)->RegisterJITEventListener(llvm::JITEventListener::createOProfileJITEventListener());
87 llvm::unwrap(EE)->RegisterJITEventListener(llvm::createOProfileJITEventListener());
  /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;
  /external/llvm/lib/Target/XCore/
XCoreFrameToArgsOffsetElim.cpp 52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end();
53 MBBI != EE; ++MBBI) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
list-pseudoints.l 5 2 0000 424344EE tetra 0x424344ee
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 117 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
125 GenericValue gv = EE->runFunction(FooF, noargs);
129 delete EE;
  /external/autotest/client/deps/lansim/src/py/
tools.py 10 "BA:C0:11:C0:FF:EE", "BAC011C0FFEE" or already in its binary representation.
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 106 ExecutionEngine *EE =
111 if (!EE) {
130 GenericValue GV = EE->runFunction(FibF, Args);
  /external/clang/examples/clang-interpreter/
main.cpp 59 std::unique_ptr<llvm::ExecutionEngine> EE(
61 if (!EE) {
76 EE->finalizeObject();
77 return EE->runFunctionAsMain(EntryFn, Args, envp);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 117 ExecutionEngine* EE;
237 GenericValue gv = p->EE->runFunction(p->F, Args);
254 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create();
260 struct threadParams add1 = { EE, add1F, 1000 };
261 struct threadParams fib1 = { EE, fibF, 39 };
262 struct threadParams fib2 = { EE, fibF, 42 };
  /external/llvm/tools/lli/
lli.cpp 315 static ExecutionEngine *EE = nullptr;
321 delete EE;
333 static void addCygMingExtraModule(ExecutionEngine *EE,
364 EE->addModule(std::move(M));
474 EE = builder.create();
475 if (!EE) {
477 errs() << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
479 errs() << argv[0] << ": unknown error creating EE!\n";
485 EE->setObjectCache(CacheManager);
500 EE->addModule(std::move(XMod))
    [all...]
RemoteMemoryManager.h 83 void notifyObjectLoaded(ExecutionEngine *EE,
  /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)
231 child_iterator EE = GTraits::child_end(Node);
232 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
235 for (; EI != EE; ++EI)
  /external/llvm/include/llvm/ExecutionEngine/
RTDyldMemoryManager.h 43 virtual void notifyObjectLoaded(ExecutionEngine *EE,
  /external/clang/test/SemaCXX/
attr-noreturn.cpp 80 struct EE : virtual AA {};
82 struct GG : EE {};
97 EE e;
113 const EE& ee = EE(); local
using-decl-1.cpp 244 struct EE { int EE; };
246 using E::EE; // expected-error-re {{no member named 'EE' in 'PR19171::E'{{$}}}}
  /external/llvm/lib/CodeGen/
StackSlotColoring.cpp 146 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end();
147 MII != EE; ++MII) {
163 EE = MI->memoperands_end(); MMOI != EE; ++MMOI) {
331 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end();
332 MII != EE; ++MII)
353 for (unsigned i = 0, ee = MI->getNumOperands(); i != ee; ++i) {
  /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/MSP430/
MSP430BranchSelector.cpp 70 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end();
71 MBBI != EE; ++MBBI)
  /external/clang/test/Sema/
block-return.c 120 int (^EE) (void) = ^{ return i+1; }; // OK
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 360 EE = BackEdges.end(); EI != EE; ++EI) {
371 EE = InEdges.end(); EI != EE; ++EI) {
382 EE = ExitingEdges.end(); EI != EE; ++EI) {

Completed in 595 milliseconds

1 2 3 4 5