Home
last modified time | relevance | path

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

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp110 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule()
111 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule()
216 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument
217 delete unwrap(EE); in LLVMDisposeExecutionEngine()
220 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument
221 unwrap(EE)->finalizeObject(); in LLVMRunStaticConstructors()
222 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors()
225 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument
226 unwrap(EE)->finalizeObject(); in LLVMRunStaticDestructors()
227 unwrap(EE) in LLVMRunStaticDestructors()
230 LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned ArgC, const char * const *ArgV, const char * const *EnvP) LLVMRunFunctionAsMain() argument
239 LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, unsigned NumArgs, LLVMGenericValueRef *Args) LLVMRunFunction() argument
254 LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F) LLVMFreeMachineCodeForFunction() argument
257 LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M) LLVMAddModule() argument
261 LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, LLVMModuleRef *OutMod, char **OutError) LLVMRemoveModule() argument
269 LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name, LLVMValueRef *OutFn) LLVMFindFunction() argument
278 LLVMRecompileAndRelinkFunction(LLVMExecutionEngineRef EE, LLVMValueRef Fn) LLVMRecompileAndRelinkFunction() argument
283 LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE) LLVMGetExecutionEngineTargetData() argument
288 LLVMGetExecutionEngineTargetMachine(LLVMExecutionEngineRef EE) LLVMGetExecutionEngineTargetMachine() argument
292 LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global, void* Addr) LLVMAddGlobalMapping() argument
297 LLVMGetPointerToGlobal(LLVMExecutionEngineRef EE, LLVMValueRef Global) LLVMGetPointerToGlobal() argument
303 LLVMGetGlobalValueAddress(LLVMExecutionEngineRef EE, const char *Name) LLVMGetGlobalValueAddress() argument
307 LLVMGetFunctionAddress(LLVMExecutionEngineRef EE, const char *Name) LLVMGetFunctionAddress() argument
[all...]
H A DExecutionEngine.cpp334 void *reset(LLVMContext &C, ExecutionEngine *EE,
338 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument
342 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in reset()
358 EE->StoreValueToMemory(PTOGV(Dest.get()), in reset()
364 EE->StoreValueToMemory(PTOGV(nullptr), in reset()
417 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument
418 unsigned PtrSize = EE->getDataLayout().getPointerSize(); in isTargetNullPtr()
540 ExecutionEngine *EE = nullptr; in create() local
542 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr), in create()
545 EE in create()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DSymbolRemappingReader.cpp59 using EE = ItaniumManglingCanonicalizer::EquivalenceError; in read()
61 case EE::Success: in read()
64 case EE::ManglingAlreadyUsed: in read()
69 case EE::InvalidFirstMangling: in read()
73 case EE::InvalidSecondMangling: in read()
/third_party/node/lib/internal/streams/
H A Dlegacy.js8 const EE = require('events');
11 EE.call(this, opts);
13 ObjectSetPrototypeOf(Stream.prototype, EE.prototype);
14 ObjectSetPrototypeOf(Stream, EE);
61 if (EE.listenerCount(this, 'error') === 0) {
/third_party/typescript/tests/baselines/reference/
H A DjsDeclarationsEnums.js20 export { E as EE };
70 exports.K = exports.I = exports.H = exports.G = exports.F = exports.FF = exports.EE = exports.E = exports.D = exports.C = exports.B = exports.A = void 0;
89 exports.EE = E;
168 export { DD as D, E as EE, F as FF };
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DGraphWriter.h86 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local
89 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels()
103 if (EI != EE && hasEdgeSourceLabels) in getEdgeSourceLabels()
229 child_iterator EE = GTraits::child_end(Node); in writeNode() local
230 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) in writeNode()
233 for (; EI != EE; ++EI) in writeNode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp54 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction()
55 MBBI != EE; ++MBBI) { in runOnMachineFunction()
/third_party/node/test/parallel/
H A Dtest-stream2-push.js27 const EE = require('events').EventEmitter;
37 const source = new EE();
H A Dtest-stream2-readable-wrap.js26 const EE = require('events').EventEmitter;
30 const old = new EE();
H A Dtest-stream-finished.js14 const EE = require('events');
260 const streamLike = new EE();
420 const d = new EE();
529 await EE.once(instance, 'finish');
H A Dtest-stream2-basic.js28 const EE = require('events').EventEmitter;
68 class TestWriter extends EE {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp120 for (auto MI = MBB->begin(), EE = MBB->end(); MI != EE; ++MI) { in expandBranches()
146 if (MI->getOpcode() == MSP430::JCC && std::next(MI) != EE) { in expandBranches()
/third_party/node/deps/undici/src/lib/handler/
H A DRedirectHandler.js7 const EE = require('events')
55 EE.prototype.on.call(this.opts.body, 'data', function () {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp163 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end(); in ScanForSpillSlotRefs()
164 MII != EE; ++MII) { in ScanForSpillSlotRefs()
180 EE = MI.memoperands_end(); in ScanForSpillSlotRefs()
181 MMOI != EE; ++MMOI) { in ScanForSpillSlotRefs()
H A DAnalysis.cpp47 EE = STy->element_end(); in ComputeLinearIndex()
48 EI != EE; ++EI) { in ComputeLinearIndex()
93 EE = STy->element_end(); local
94 EI != EE; ++EI) local
H A DMachineCSE.cpp355 MachineBasicBlock::const_iterator EE = CSMBB->end(); in PhysRegDefsReach() local
359 while (I != E && I != EE && I->isDebugInstr()) in PhysRegDefsReach()
362 if (I == EE) { in PhysRegDefsReach()
368 EE = MBB->end(); in PhysRegDefsReach()
H A DShadowStackGCLowering.cpp351 EscapeEnumerator EE(F, "gc_cleanup"); in runOnFunction()
352 while (IRBuilder<> *AtExit = EE.Next()) { in runOnFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp359 for (auto EE : Entry.Children) { in dumpExportEntry()
360 OS << EE.Name; in dumpExportEntry()
362 encodeSLEB128(EE.NodeOffset, OS); in dumpExportEntry()
364 for (auto EE : Entry.Children) in dumpExportEntry()
365 dumpExportEntry(OS, EE); in dumpExportEntry()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h47 virtual void notifyObjectLoaded(ExecutionEngine *EE, in notifyObjectLoaded() argument
/third_party/node/deps/npm/node_modules/ignore-walk/lib/
H A Dindex.js5 const EE = require('events').EventEmitter
8 class Walker extends EE {
/third_party/node/deps/npm/node_modules/npmlog/lib/
H A Dlog.js4 var EE = require('events').EventEmitter
5 var log = exports = module.exports = new EE()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp832 } else if (auto *EE = dyn_cast<ExtractElementInst>(Current)) { in findBasePointer()
833 visitIncomingValue(EE->getVectorOperand()); in findBasePointer()
893 } else if (auto *EE = dyn_cast<ExtractElementInst>(BDV)) { in findBasePointer()
897 meetBDVState(NewState, getStateForInput(EE->getVectorOperand())); in findBasePointer()
943 auto *EE = cast<ExtractElementInst>(I); in findBasePointer() local
944 // TODO: In many cases, the new instruction is just EE itself. We should in findBasePointer()
948 State.getBaseValue(), EE->getIndexOperand(), "base_ee", EE); in findBasePointer()
975 } else if (auto *EE = dyn_cast<ExtractElementInst>(I)) { in findBasePointer()
976 UndefValue *Undef = UndefValue::get(EE in findBasePointer()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp432 EscapeEnumerator EE(F, "tsan_ignore_cleanup", ClHandleCxxExceptions); in InsertRuntimeIgnores()
433 while (IRBuilder<> *AtExit = EE.Next()) { in InsertRuntimeIgnores()
510 EscapeEnumerator EE(F, "tsan_cleanup", ClHandleCxxExceptions); in sanitizeFunction()
511 while (IRBuilder<> *AtExit = EE.Next()) { in sanitizeFunction()
/third_party/node/deps/v8/src/base/numbers/
H A Dcached-powers.cc31 {0xEA9C'2277'23EE'8BCB, -901, -252}, {0xAECC'4991'4078'536D, -874, -244},

Completed in 17 milliseconds

12