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

12

/freebsd-13-stable/contrib/llvm-project/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...]
/freebsd-13-stable/contrib/llvm-project/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...]
H A DExecutionEngine.cpp336 void *reset(LLVMContext &C, ExecutionEngine *EE,
340 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, argument
344 unsigned PtrSize = EE->getDataLayout().getPointerSize();
360 EE->StoreValueToMemory(PTOGV(Dest.get()),
366 EE->StoreValueToMemory(PTOGV(nullptr),
419 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { argument
420 unsigned PtrSize = EE->getDataLayout().getPointerSize();
542 ExecutionEngine *EE = nullptr; local
544 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr),
547 EE
[all...]
/freebsd-13-stable/contrib/llvm-project/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:
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSimpleConstraintManager.h24 ExprEngine *EE; member in class:clang::ento::SimpleConstraintManager
29 : EE(exprengine), SVB(SB) {}
H A DRangedConstraintManager.h149 RangedConstraintManager(ExprEngine *EE, SValBuilder &SB) argument
150 : SimpleConstraintManager(EE, SB) {}
H A DSMTConstraintManager.h34 SMTConstraintManager(clang::ento::ExprEngine *EE, argument
36 : SimpleConstraintManager(EE, SB) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp54 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end();
55 MBBI != EE; ++MBBI) {
/freebsd-13-stable/contrib/llvm-project/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)
229 child_iterator EE = GTraits::child_end(Node); local
230 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i)
233 for (; EI != EE; ++EI)
/freebsd-13-stable/contrib/llvm-project/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());
462 auto *EE = dyn_cast<ExtractElementInst>(&I); local
463 if (!EE)
468 Value *Root = matchAddReduction(*EE);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp335 static void addCygMingExtraModule(ExecutionEngine &EE, LLVMContext &Context, argument
360 EE.addModule(std::move(M));
485 std::unique_ptr<ExecutionEngine> EE(builder.create());
486 if (!EE) {
489 << "error creating EE: " << ErrorMsg << "\n";
491 WithColor::error(errs(), argv[0]) << "unknown error creating EE!\n";
498 EE->setObjectCache(CacheManager.get());
511 EE->addModule(std::move(XMod));
523 EE->addObjectFile(std::move(O));
547 EE
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleConstraintManager.cpp47 if (NotifyAssumeClients && EE)
48 return EE->processAssume(State, Cond, Assumption);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h47 virtual void notifyObjectLoaded(ExecutionEngine *EE, argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp120 for (auto MI = MBB->begin(), EE = MBB->end(); MI != EE; ++MI) {
146 if (MI->getOpcode() == MSP430::JCC && std::next(MI) != EE) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp163 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end();
164 MII != EE; ++MII) {
180 EE = MI.memoperands_end();
181 MMOI != EE; ++MMOI) {
H A DShadowStackGCLowering.cpp351 EscapeEnumerator EE(F, "gc_cleanup");
352 while (IRBuilder<> *AtExit = EE.Next()) {
H A DMachineCSE.cpp355 MachineBasicBlock::const_iterator EE = CSMBB->end(); local
359 while (I != E && I != EE && I->isDebugInstr())
362 if (I == EE) {
368 EE = MBB->end();
H A DAnalysis.cpp48 EE = STy->element_end();
49 EI != EE; ++EI) {
94 EE = STy->element_end(); local
95 EI != EE; ++EI) local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp431 for (auto EE : Entry.Children) {
432 OS << EE.Name;
434 encodeSLEB128(EE.NodeOffset, OS);
436 for (auto EE : Entry.Children)
437 dumpExportEntry(OS, EE);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp500 std::map<std::string, std::vector<std::string>>::iterator IE, EE; local
501 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) {
H A DGICombinerEmitter.cpp244 for (auto EI = EdgesRemaining.begin(), EE = EdgesRemaining.end();
245 EI != EE; ++EI) {
258 for (auto EI = EdgesRemaining.begin(), EE = EdgesRemaining.end();
259 EI != EE; ++EI) {
H A DX86RecognizableInstr.h73 MAP(EE, 110) \
/freebsd-13-stable/sys/arm64/nvidia/tegra210/
H A Dtegra210_pinmux.c285 GMUX(0x088, EE, 0, qspi_sck_pee0, qspi, rsvd1, rsvd2, rsvd3, 0xa90, 0, 0, 0, 0),
286 GMUX(0x08c, EE, 1, qspi_cs_n_pee1, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0),
287 GMUX(0x090, EE, 2, qspi_io0_pee2, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0),
288 GMUX(0x094, EE, 3, qspi_io1_pee3, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0),
289 GMUX(0x098, EE, 4, qspi_io2_pee4, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0),
290 GMUX(0x09c, EE, 5, qspi_io3_pee5, qspi, rsvd1, rsvd2, rsvd3, -1, 0, 0, 0, 0),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp851 } else if (auto *EE = dyn_cast<ExtractElementInst>(Current)) {
852 visitIncomingValue(EE->getVectorOperand());
917 } else if (auto *EE = dyn_cast<ExtractElementInst>(BDV)) {
921 meetBDVState(NewState, getStateForInput(EE->getVectorOperand()));
973 auto *EE = cast<ExtractElementInst>(I); local
974 // TODO: In many cases, the new instruction is just EE itself. We should
978 State.getBaseValue(), EE->getIndexOperand(), "base_ee", EE);
1025 } else if (auto *EE = dyn_cast<ExtractElementInst>(I)) {
1026 UndefValue *Undef = UndefValue::get(EE
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp464 EscapeEnumerator EE(F, "tsan_ignore_cleanup", ClHandleCxxExceptions);
465 while (IRBuilder<> *AtExit = EE.Next()) {
547 EscapeEnumerator EE(F, "tsan_cleanup", ClHandleCxxExceptions);
548 while (IRBuilder<> *AtExit = EE.Next()) {

Completed in 309 milliseconds

12