Home
last modified time | relevance | path

Searched refs:EE (Results 1 – 25 of 76) sorted by relevance

1234

/llvm-project-15.0.7/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c64 value llvm_ee_dispose(LLVMExecutionEngineRef EE) { in llvm_ee_dispose() argument
65 LLVMDisposeExecutionEngine(EE); in llvm_ee_dispose()
71 LLVMAddModule(EE, M); in llvm_ee_add_module()
79 if (LLVMRemoveModule(EE, M, &RemovedModule, &Error)) in llvm_ee_remove_module()
85 value llvm_ee_run_static_ctors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_ctors() argument
86 LLVMRunStaticConstructors(EE); in llvm_ee_run_static_ctors()
91 value llvm_ee_run_static_dtors(LLVMExecutionEngineRef EE) { in llvm_ee_run_static_dtors() argument
92 LLVMRunStaticDestructors(EE); in llvm_ee_run_static_dtors()
99 value llvm_ee_get_data_layout(LLVMExecutionEngineRef EE) { in llvm_ee_get_data_layout() argument
104 OrigDataLayout = LLVMGetExecutionEngineTargetData(EE); in llvm_ee_get_data_layout()
[all …]
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp110 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local
111 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule()
216 delete unwrap(EE); in LLVMDisposeExecutionEngine()
220 unwrap(EE)->finalizeObject(); in LLVMRunStaticConstructors()
225 unwrap(EE)->finalizeObject(); in LLVMRunStaticDestructors()
232 unwrap(EE)->finalizeObject(); in LLVMRunFunctionAsMain()
241 unwrap(EE)->finalizeObject(); in LLVMRunFunction()
263 unwrap(EE)->removeModule(Mod); in LLVMRemoveModule()
283 return wrap(&unwrap(EE)->getDataLayout()); in LLVMGetExecutionEngineTargetData()
297 unwrap(EE)->finalizeObject(); in LLVMGetPointerToGlobal()
[all …]
H A DExecutionEngine.cpp331 void *reset(LLVMContext &C, ExecutionEngine *EE,
335 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument
339 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in reset()
355 EE->StoreValueToMemory(PTOGV(Dest.get()), in reset()
361 EE->StoreValueToMemory(PTOGV(nullptr), in reset()
414 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument
415 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in isTargetNullPtr()
536 ExecutionEngine *EE = nullptr; in create() local
541 if (EE) { in create()
542 EE->setVerifyModules(VerifyModules); in create()
[all …]
/llvm-project-15.0.7/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,
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,
141 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE);
143 void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global,
[all …]
/llvm-project-15.0.7/clang/test/CXX/expr/expr.const/
H A Dp3-0x.cpp45 enum class EE { EE32 = ' ', EE65 = 'A', EE1 = (short)1, EE5 = E5 }; enum
51 case EE::EE32: // expected-error {{not implicitly convertible}} in b()
52 case (int)EE::EE32: in b()
62 b = EE::EE32, // expected-error {{not implicitly convertible}}
63 c = (int)EE::EE32,
70 using Int = A<EE::EE32>; // expected-error {{not implicitly convertible}}
71 using Int = A<(int)EE::EE32>;
/llvm-project-15.0.7/llvm/lib/Support/
H A DSymbolRemappingReader.cpp60 using EE = ItaniumManglingCanonicalizer::EquivalenceError; in read() typedef
62 case EE::Success: in read()
65 case EE::ManglingAlreadyUsed: in read()
70 case EE::InvalidFirstMangling: in read()
74 case EE::InvalidSecondMangling: in read()
/llvm-project-15.0.7/clang/tools/clang-fuzzer/handle-llvm/
H A Dhandle_llvm.cpp179 std::unique_ptr<ExecutionEngine> EE(builder.create()); in CreateAndRunJITFunc() local
180 if (!EE) in CreateAndRunJITFunc()
183 EE->finalizeObject(); in CreateAndRunJITFunc()
184 EE->runStaticConstructorsDestructors(false); in CreateAndRunJITFunc()
198 LLVMFunc f = reinterpret_cast<LLVMFunc>(EE->getPointerToFunction(EntryFunc)); in CreateAndRunJITFunc()
207 EE->runStaticConstructorsDestructors(true); in CreateAndRunJITFunc()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DGraphWriter.h85 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
91 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels()
109 if (EI != EE && hasEdgeSourceLabels) { in getEdgeSourceLabels()
191 child_iterator EE = GTraits::child_end(Node); in writeNode() local
192 for (; EI != EE && ColSpan != 64; ++EI, ++ColSpan) in writeNode()
197 if (EI != EE) in writeNode()
279 child_iterator EE = GTraits::child_end(Node); in writeNode() local
280 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode()
283 for (; EI != EE; ++EI) in writeNode()
/llvm-project-15.0.7/llvm/tools/lli/
H A Dlli.cpp453 EE.addModule(std::move(M)); in addCygMingExtraModule()
579 if (!EE) { in main()
604 EE->addModule(std::move(XMod)); in main()
616 EE->addObjectFile(std::move(O)); in main()
640 EE->addArchive(std::move(OB)); in main()
651 EE->RegisterJITEventListener( in main()
653 EE->RegisterJITEventListener( in main()
656 EE->RegisterJITEventListener( in main()
732 EE->finalizeObject(); in main()
790 EE->finalizeObject(); in main()
[all …]
/llvm-project-15.0.7/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp132 ExecutionEngine* EE; member
253 GenericValue gv = p->EE->runFunction(p->F, Args); in callFunc()
271 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
277 struct threadParams add1 = { EE, add1F, 1000 }; in main()
278 struct threadParams fib1 = { EE, fibF, 39 }; in main()
279 struct threadParams fib2 = { EE, fibF, 42 }; in main()
/llvm-project-15.0.7/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp125 ExecutionEngine* EE = EngineBuilder(std::move(Owner)).create(); in main() local
133 GenericValue gv = EE->runFunction(FooF, noargs); in main()
137 delete EE; in main()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp354 static Value *matchAddReduction(const ExtractElementInst &EE, in matchAddReduction() argument
358 auto *Index = dyn_cast<ConstantInt>(EE.getIndexOperand()); in matchAddReduction()
362 const auto *BO = dyn_cast<BinaryOperator>(EE.getVectorOperand()); in matchAddReduction()
365 if (EE.getParent() != BO->getParent()) in matchAddReduction()
379 if (EE.getParent() != BO->getParent()) in matchAddReduction()
516 auto *EE = dyn_cast<ExtractElementInst>(&I); in runOnFunction() local
517 if (!EE) in runOnFunction()
523 Value *Root = matchAddReduction(*EE, ReduceInOneBB); in runOnFunction()
/llvm-project-15.0.7/llvm/examples/Fibonacci/
H A Dfibonacci.cpp118 ExecutionEngine *EE = in main() local
123 if (!EE) { in main()
142 GenericValue GV = EE->runFunction(FibF, Args); in main()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dattr-noreturn.cpp80 struct EE : virtual AA {}; struct
82 struct GG : EE {};
97 EE e; in test_31()
113 const EE& ee = EE(); in test_31()
H A Dusing-decl-1.cpp242 struct EE { int EE; }; argument
244 using E::EE; // expected-error-re {{no member named 'EE' in 'PR19171::E'{{$}}}}
/llvm-project-15.0.7/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local
53 MBBI != EE; ++MBBI) { in runOnMachineFunction()
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSimpleConstraintManager.h24 ExprEngine *EE; variable
29 : EE(exprengine), SVB(SB) {} in SimpleConstraintManager()
/llvm-project-15.0.7/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp120 for (auto MI = MBB->begin(), EE = MBB->end(); MI != EE; ++MI) { in expandBranches() local
146 if (MI->getOpcode() == MSP430::JCC && std::next(MI) != EE) { in expandBranches()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Davx512vl-nontemporal.ll4 …AA, ptr %B, <4 x double> %C, <4 x double> %CC, i32 %D, <4 x i64> %E, <4 x i64> %EE, ptr %loadptr) {
23 %E2 = add <4 x i64> %E, %EE
35 …AA, ptr %B, <2 x double> %C, <2 x double> %CC, i32 %D, <2 x i64> %E, <2 x i64> %EE, ptr %loadptr) {
53 %E2 = add <2 x i64> %E, %EE
H A Davx512-nontemporal.ll4 …> %AA, ptr %B, <8 x double> %C, <8 x double> %CC, <8 x i64> %E, <8 x i64> %EE, <16 x i32> %F, <16 …
44 %E2 = add <8 x i64> %E, %EE
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp940 ExecutionEngine *EE = EngineBuilder(M) in compileModule() local
944 if (!EE) { in compileModule()
950 EE->setObjectCache(&OurObjectCache); in compileModule()
963 FPM->add(new DataLayout(*EE->getDataLayout())); in compileModule()
990 EE->finalizeObject(); in compileModule()
993 EngineMap[M] = EE; in compileModule()
995 return EE; in compileModule()
1013 ExecutionEngine *EE = compileModule(*it); in getPointerToFunction() local
1014 void *P = EE->getPointerToFunction(F); in getPointerToFunction()
1045 ExecutionEngine *EE = compileModule(*it); in getPointerToNamedFunction() local
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp47 if (EE) in assume()
48 return EE->processAssume(State, Cond, Assumption); in assume()
/llvm-project-15.0.7/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c148 double EE, double FF, double GG, double HH, in MathFunc() argument
151 return X + Y + Z + AA + BB + CC + DD + EE + FF + GG + HH in MathFunc()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dsuspicious-enum-usage.rst62 EE = 8,
70 EE; // Warning at the decl, and note that it was used here as a bitmask.
/llvm-project-15.0.7/llvm/test/Analysis/MemorySSA/
H A Dpr40038.ll9 @0 = internal global [7 x i8] c"\00\EE\00\00\EE\00\00", align 2

1234