Home
last modified time | relevance | path

Searched defs:EE (Results 1 – 25 of 137) sorted by relevance

123456

/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp111 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local
216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine()
220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors()
225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors()
230 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain()
239 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunction()
254 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) { in LLVMFreeMachineCodeForFunction()
257 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule()
261 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule()
269 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, in LLVMFindFunction()
[all …]
H A DExecutionEngine.cpp335 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset()
414 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr()
536 ExecutionEngine *EE = nullptr; in create() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp110 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local
216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine()
220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors()
225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors()
230 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain()
239 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunction()
254 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) { in LLVMFreeMachineCodeForFunction()
257 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule()
261 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule()
269 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, in LLVMFindFunction()
[all …]
H A DExecutionEngine.cpp338 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset()
417 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr()
540 ExecutionEngine *EE = nullptr; in create() local
/aosp_15_r20/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp110 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local
214 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine()
218 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors()
223 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors()
228 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain()
237 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunction()
252 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) { in LLVMFreeMachineCodeForFunction()
255 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M){ in LLVMAddModule()
259 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, in LLVMRemoveModule()
267 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, in LLVMFindFunction()
[all …]
H A DExecutionEngine.cpp336 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset()
414 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr()
538 ExecutionEngine *EE = nullptr; in create() local
/aosp_15_r20/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c64 CAMLprim value llvm_ee_dispose(LLVMExecutionEngineRef EE) { in llvm_ee_dispose()
70 CAMLprim value llvm_ee_add_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_add_module()
76 CAMLprim value llvm_ee_remove_module(LLVMModuleRef M, LLVMExecutionEngineRef EE) { in llvm_ee_remove_module()
85 CAMLprim value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_ctors()
91 CAMLprim value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_dtors()
99 CAMLprim value llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) { in llvm_ee_get_data_layout()
114 LLVMExecutionEngineRef EE) { in llvm_ee_add_global_mapping()
120 LLVMExecutionEngineRef EE) { in llvm_ee_get_global_value_address()
125 LLVMExecutionEngineRef EE) { in llvm_ee_get_function_address()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Support/
DGraphWriter.h85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
191 child_iterator EE = GTraits::child_end(Node); in writeNode() local
279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Support/
DGraphWriter.h85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
191 child_iterator EE = GTraits::child_end(Node); in writeNode() local
279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
H A DGraphWriter.h85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
191 child_iterator EE = GTraits::child_end(Node); in writeNode() local
279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Support/
DGraphWriter.h85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
191 child_iterator EE = GTraits::child_end(Node); in writeNode() local
279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Support/
DGraphWriter.h85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
191 child_iterator EE = GTraits::child_end(Node); in writeNode() local
279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
/aosp_15_r20/external/libopenapv/src/
H A Doapv_tq.c46 int EE[2], EO[2]; in oapv_tx_part() local
137 s32 EE[2], EO[2]; in oapv_itx_get_wo_sft() local
171 int EE[2], EO[2]; in oapv_itx_part() local
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dusing-decl-1.cpp242 struct EE { int EE; }; argument
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DGraphWriter.h86 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
229 child_iterator EE = GTraits::child_end(Node); in writeNode() local
/aosp_15_r20/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp133 ExecutionEngine* EE; member
270 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
/aosp_15_r20/external/llvm/include/llvm/Support/
H A DGraphWriter.h71 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
231 child_iterator EE = GTraits::child_end(Node); in writeNode() local
/aosp_15_r20/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp74 for (StringMap<DataArray>::iterator EI = Entries.begin(), EE = Entries.end(); in FinalizeTable() local
269 EE = Entries.end(); in print() local
/aosp_15_r20/external/llvm/tools/lli/
H A Dlli.cpp317 static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context, in addCygMingExtraModule()
462 std::unique_ptr<ExecutionEngine> EE(builder.create()); in main() local
/aosp_15_r20/external/clang/test/Analysis/
H A Dpr22954.c217 struct EE { struct
223 struct EE E0 = {{{1, 2}, {3, 4}}, 0}; in f13() argument
/aosp_15_r20/external/llvm/lib/CodeGen/
H A DShadowStackGCLowering.cpp136 for (BasicBlock::iterator II = BB->begin(), EE = BB->end(); II != EE; in Next() local
447 EscapeEnumerator EE(F, "gc_cleanup"); in runOnFunction() local
H A DStackSlotColoring.cpp146 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end(); in ScanForSpillSlotRefs() local
163 EE = MI.memoperands_end(); in ScanForSpillSlotRefs() local
H A DAnalysis.cpp49 EE = STy->element_end(); in ComputeLinearIndex() local
94 EE = STy->element_end(); in ComputeValueVTs() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp354 static Value *matchAddReduction(const ExtractElementInst &EE, in matchAddReduction()
516 auto *EE = dyn_cast<ExtractElementInst>(&I); in runOnFunction() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp163 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end(); in ScanForSpillSlotRefs() local
180 EE = MI.memoperands_end(); in ScanForSpillSlotRefs() local

123456