Searched refs:EE (Results 1 - 25 of 74) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c64 value llvm_ee_dispose(LLVMExecutionEngineRef EE) { argument
65 LLVMDisposeExecutionEngine(EE);
70 value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
71 LLVMAddModule(EE, M);
76 value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { argument
79 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error))
85 value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { argument
86 LLVMRunStaticConstructors(EE);
91 value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { argument
92 LLVMRunStaticDestructors(EE);
99 llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) argument
113 llvm_ee_add_global_mapping(LLVMValueRef Global, value Ptr, LLVMExecutionEngineRef EE) argument
119 llvm_ee_get_global_value_address(value Name, LLVMExecutionEngineRef EE) argument
124 llvm_ee_get_function_address(value Name, LLVMExecutionEngineRef EE) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Denum_cond.c17 enum EE enum
25 enum EE e;
H A Dinfo-types.c51 DD, EE, FF enumerator in enum:__anon1408
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Denum_cond.c17 enum EE enum
25 enum EE e;
H A Dinfo-types.c51 DD, EE, FF enumerator in enum:__anon892
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DExecutionEngine.h112 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE);
114 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE);
116 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE);
118 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F,
122 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F,
126 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F);
128 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M);
130 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
133 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
136 void *LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE,
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp110 if (ExecutionEngine *EE = builder.create()){
111 *OutEE = wrap(EE);
216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { argument
217 delete unwrap(EE);
220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { argument
221 unwrap(EE)->finalizeObject();
222 unwrap(EE)->runStaticConstructorsDestructors(false);
225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { argument
226 unwrap(EE)->finalizeObject();
227 unwrap(EE)
230 LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned ArgC, const char * const *ArgV, const char * const *EnvP) argument
239 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) argument
254 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) argument
257 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) argument
261 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) argument
269 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) argument
278 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) argument
283 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) argument
288 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) argument
292 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) argument
297 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) argument
303 LLVMGetGlobalValueAddress(LLVMExecutionEngineRef EE, const char *Name) argument
307 LLVMGetFunctionAddress(LLVMExecutionEngineRef EE, const char *Name) argument
311 LLVMExecutionEngineGetErrMsg(LLVMExecutionEngineRef EE, char **OutError) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DSymbolRemappingReader.cpp59 using EE = ItaniumManglingCanonicalizer::EquivalenceError;
61 case EE::Success:
64 case EE::ManglingAlreadyUsed:
69 case EE::InvalidFirstMangling:
73 case EE::InvalidSecondMangling:
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mmix/
H A Dlist-pseudoints.l5 2 0000 424344EE tetra 0x424344ee
/netbsd-current/external/apache2/llvm/dist/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp125 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); local
133 GenericValue gv = EE->runFunction(FooF, noargs);
137 delete EE;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
H A Dvar-tag.cc37 enum EE {ea, eb, ec} ee; enum
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dvar-tag.cc37 enum EE {ea, eb, ec} ee; enum
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp54 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end();
55 MBBI != EE; ++MBBI) {
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSimpleConstraintManager.h24 ExprEngine *EE; member in class:clang::ento::SimpleConstraintManager
29 : EE(exprengine), SVB(SB) {}
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/
H A Dsha256.c99 uint32_t AA, BB, CC, DD, EE, FF, GG, HH; local
107 EE = E;
121 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i];
126 FF = EE;
127 EE = DD + T1;
138 E += EE;
H A Dsha512.c123 uint64_t AA, BB, CC, DD, EE, FF, GG, HH; local
131 EE = E;
145 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i];
150 FF = EE;
151 EE = DD + T1;
162 E += EE;
H A Dsha.c77 temp = cshift(AA, 5) + f(BB,CC,DD) + EE + data[t] + k; \
78 EE = DD; \
88 uint32_t AA, BB, CC, DD, EE; local
96 EE = E;
199 E += EE;
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Fibonacci/
H A Dfibonacci.cpp118 ExecutionEngine *EE = local
123 if (!EE) {
142 GenericValue GV = EE->runFunction(FibF, Args);
/netbsd-current/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp132 ExecutionEngine* EE; member in struct:threadParams
253 GenericValue gv = p->EE->runFunction(p->F, Args);
271 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); local
277 struct threadParams add1 = { EE, add1F, 1000 };
278 struct threadParams fib1 = { EE, fibF, 39 };
279 struct threadParams fib2 = { EE, fibF, 42 };
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-fuzzer/handle-llvm/
H A Dhandle_llvm.cpp179 std::unique_ptr<ExecutionEngine> EE(builder.create());
180 if (!EE)
183 EE->finalizeObject();
184 EE->runStaticConstructorsDestructors(false);
198 LLVMFunc f = reinterpret_cast<LLVMFunc>(EE->getPointerToFunction(EntryFunc));
207 EE->runStaticConstructorsDestructors(true);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DGraphWriter.h86 child_iterator EE = GTraits::child_end(Node); local
89 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) {
103 if (EI != EE && hasEdgeSourceLabels)
227 child_iterator EE = GTraits::child_end(Node); local
228 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
231 for (; EI != EE; ++EI)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp303 static Value *matchAddReduction(const ExtractElementInst &EE) { argument
305 auto *Index = dyn_cast<ConstantInt>(EE.getIndexOperand());
309 const auto *BO = dyn_cast<BinaryOperator>(EE.getVectorOperand());
459 auto *EE = dyn_cast<ExtractElementInst>(&I); local
460 if (!EE)
465 Value *Root = matchAddReduction(*EE);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/lli/
H A Dlli.cpp374 static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context, argument
399 EE.addModule(std::move(M));
524 std::unique_ptr<ExecutionEngine> EE(builder.create());
525 if (!EE) {
528 << "error creating EE: " << ErrorMsg << "\n";
530 WithColor::error(errs(), argv[0]) << "unknown error creating EE!\n";
537 EE->setObjectCache(CacheManager.get());
550 EE->addModule(std::move(XMod));
562 EE->addObjectFile(std::move(O));
586 EE
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp47 if (NotifyAssumeClients && EE)
48 return EE->processAssume(State, Cond, Assumption);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h47 virtual void notifyObjectLoaded(ExecutionEngine *EE, argument

Completed in 372 milliseconds

123