| /NextBSD/contrib/llvm/lib/ExecutionEngine/ |
| HD | ExecutionEngineBindings.cpp | 109 if (ExecutionEngine *EE = builder.create()){ in LLVMCreateExecutionEngineForModule() local 110 *OutEE = wrap(EE); in LLVMCreateExecutionEngineForModule() 242 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE) { in LLVMDisposeExecutionEngine() argument 243 delete unwrap(EE); in LLVMDisposeExecutionEngine() 246 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticConstructors() argument 247 unwrap(EE)->runStaticConstructorsDestructors(false); in LLVMRunStaticConstructors() 250 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE) { in LLVMRunStaticDestructors() argument 251 unwrap(EE)->runStaticConstructorsDestructors(true); in LLVMRunStaticDestructors() 254 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, in LLVMRunFunctionAsMain() argument 257 unwrap(EE)->finalizeObject(); in LLVMRunFunctionAsMain() [all …]
|
| HD | ExecutionEngine.cpp | 328 void *reset(LLVMContext &C, ExecutionEngine *EE, 332 void *ArgvArray::reset(LLVMContext &C, ExecutionEngine *EE, in reset() argument 336 unsigned PtrSize = EE->getDataLayout()->getPointerSize(); in reset() 351 EE->StoreValueToMemory(PTOGV(Dest.get()), in reset() 357 EE->StoreValueToMemory(PTOGV(nullptr), in reset() 410 static bool isTargetNullPtr(ExecutionEngine *EE, void *Loc) { in isTargetNullPtr() argument 411 unsigned PtrSize = EE->getDataLayout()->getPointerSize(); in isTargetNullPtr() 535 ExecutionEngine *EE = nullptr; in create() local 537 EE = ExecutionEngine::OrcMCJITReplacementCtor(ErrorStr, std::move(MemMgr), in create() 540 EE->addModule(std::move(M)); in create() [all …]
|
| /NextBSD/contrib/llvm/include/llvm-c/ |
| HD | ExecutionEngine.h | 129 void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE); 131 void LLVMRunStaticConstructors(LLVMExecutionEngineRef EE); 133 void LLVMRunStaticDestructors(LLVMExecutionEngineRef EE); 135 int LLVMRunFunctionAsMain(LLVMExecutionEngineRef EE, LLVMValueRef F, 139 LLVMGenericValueRef LLVMRunFunction(LLVMExecutionEngineRef EE, LLVMValueRef F, 143 void LLVMFreeMachineCodeForFunction(LLVMExecutionEngineRef EE, LLVMValueRef F); 145 void LLVMAddModule(LLVMExecutionEngineRef EE, LLVMModuleRef M); 148 void LLVMAddModuleProvider(LLVMExecutionEngineRef EE, LLVMModuleProviderRef MP); 150 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M, 154 LLVMBool LLVMRemoveModuleProvider(LLVMExecutionEngineRef EE, [all …]
|
| /NextBSD/contrib/llvm/tools/lli/ |
| HD | lli.cpp | 316 static ExecutionEngine *EE = nullptr; variable 322 delete EE; in do_shutdown() 334 static void addCygMingExtraModule(ExecutionEngine *EE, in addCygMingExtraModule() argument 365 EE->addModule(std::move(M)); in addCygMingExtraModule() 475 EE = builder.create(); in main() 476 if (!EE) { in main() 486 EE->setObjectCache(CacheManager); in main() 501 EE->addModule(std::move(XMod)); in main() 512 EE->addObjectFile(std::move(O)); in main() 534 EE->addArchive(std::move(OB)); in main() [all …]
|
| HD | RemoteMemoryManager.cpp | 80 void RemoteMemoryManager::notifyObjectLoaded(ExecutionEngine *EE, in notifyObjectLoaded() argument 140 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first.MB.base()), Addr); in notifyObjectLoaded()
|
| HD | RemoteMemoryManager.h | 83 void notifyObjectLoaded(ExecutionEngine *EE,
|
| /NextBSD/contrib/llvm/include/llvm/Support/ |
| HD | GraphWriter.h | 71 child_iterator EE = GTraits::child_end(Node); in getEdgeSourceLabels() local 74 for (unsigned i = 0; EI != EE && i != 64; ++EI, ++i) { in getEdgeSourceLabels() 88 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()
|
| /NextBSD/contrib/llvm/lib/Target/XCore/ |
| HD | XCoreFrameToArgsOffsetElim.cpp | 52 for (MachineBasicBlock::iterator MBBI = MBB.begin(), EE = MBB.end(); in runOnMachineFunction() local 53 MBBI != EE; ++MBBI) { in runOnMachineFunction()
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | StackSlotColoring.cpp | 146 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end(); in ScanForSpillSlotRefs() local 147 MII != EE; ++MII) { in ScanForSpillSlotRefs() 163 EE = MI->memoperands_end(); MMOI != EE; ++MMOI) { in ScanForSpillSlotRefs() local 331 for (MachineBasicBlock::iterator MII = MBB->begin(), EE = MBB->end(); in ColorSlots() local 332 MII != EE; ++MII) in ColorSlots()
|
| HD | ShadowStackGCLowering.cpp | 132 for (BasicBlock::iterator II = BB->begin(), EE = BB->end(); II != EE; in Next() local 443 EscapeEnumerator EE(F, "gc_cleanup"); in runOnFunction() local 444 while (IRBuilder<> *AtExit = EE.Next()) { in runOnFunction()
|
| HD | MachineCSE.cpp | 294 MachineBasicBlock::const_iterator EE = CSMBB->end(); in PhysRegDefsReach() local 298 while (I != E && I != EE && I->isDebugValue()) in PhysRegDefsReach() 301 if (I == EE) { in PhysRegDefsReach() 307 EE = MBB->end(); in PhysRegDefsReach()
|
| HD | Analysis.cpp | 48 EE = STy->element_end(); in ComputeLinearIndex() local 49 EI != EE; ++EI) { in ComputeLinearIndex() 93 EE = STy->element_end(); in ComputeValueVTs() local 94 EI != EE; ++EI) in ComputeValueVTs()
|
| /NextBSD/contrib/libstdc++/config/abi/pre/ |
| D | gnu.ver | 224 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[CD]*; 225 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][a-r]*; 226 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]seek*; 227 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]set*; 232 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][t-z]*; 233 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9]_M_[a-z]*; 234 _ZNSt15basic_stringbufI[cw]St11char_traitsI[cw]ESaI[cw]EE[0-9][0-9]_M_[a-z]*; 285 _ZSt2wsI[cw]St11char_traitsI[cw]EE*; 677 _ZSt21__copy_streambufs_eofI[cw]St11char_traitsI[cw]EE[il]PSt15basic_streambuf*;
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | BranchProbabilityInfo.cpp | 349 EE = BackEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local 360 EE = InEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local 371 EE = ExitingEdges.end(); EI != EE; ++EI) { in calcLoopBranchHeuristics() local
|
| /NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| HD | DwarfAccelTable.cpp | 74 for (StringMap<DataArray>::iterator EI = Entries.begin(), EE = Entries.end(); in FinalizeTable() local 75 EI != EE; ++EI) { in FinalizeTable() 269 EE = Entries.end(); in print() local 270 EI != EE; ++EI) { in print()
|
| /NextBSD/contrib/llvm/lib/Target/MSP430/ |
| HD | MSP430BranchSelector.cpp | 70 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local 71 MBBI != EE; ++MBBI) in runOnMachineFunction()
|
| /NextBSD/contrib/llvm/utils/TableGen/ |
| HD | CodeEmitterGen.cpp | 291 std::map<std::string, std::vector<std::string> >::iterator IE, EE; in run() local 292 for (IE = CaseMap.begin(), EE = CaseMap.end(); IE != EE; ++IE) { in run()
|
| /NextBSD/crypto/openssl/doc/HOWTO/ |
| HD | proxy_certificates.txt | 15 directly with the EE certificate as issuing certificate, or by extension through 19 owner of the EE certificate. 33 by the EE certificate owner. 154 time. You also need to fill in the defaults when the EE certificate is 201 CAs, followed by the EE certificate, followed by 261 /* We have a EE certificate, let's use it to set default!
|
| /NextBSD/contrib/llvm/lib/Target/PowerPC/ |
| HD | PPCBranchSelector.cpp | 105 for (MachineBasicBlock::iterator MBBI = MBB->begin(), EE = MBB->end(); in runOnMachineFunction() local 106 MBBI != EE; ++MBBI) in runOnMachineFunction()
|
| /NextBSD/crypto/openssl/doc/ssl/ |
| HD | SSL_check_chain.pod | 29 B<CERT_PKEY_SIGN>: the EE key can be used for signing. 31 B<CERT_PKEY_EE_SIGNATURE>: the signature algorithm of the EE certificate is
|
| /NextBSD/contrib/llvm/lib/Target/ARM/ |
| HD | A15SDOptimizer.cpp | 230 II = MRI->use_instr_begin(Reg), EE = MRI->use_instr_end(); in eraseInstrWithNoUses() local 231 II != EE; ++II) { in eraseInstrWithNoUses() 638 EE = DefSrcs.end(); II != EE; ++II) { in runOnInstruction() local
|
| /NextBSD/contrib/llvm/include/llvm/ExecutionEngine/ |
| HD | RTDyldMemoryManager.h | 43 virtual void notifyObjectLoaded(ExecutionEngine *EE, in notifyObjectLoaded() argument
|
| /NextBSD/contrib/tzdata/ |
| HD | europe | 634 Zone EET 2:00 EU EE%sT 760 2:00 Russia EE%sT 2011 Mar 27 2:00s 851 2:00 Bulg EE%sT 1982 Sep 26 3:00 852 2:00 C-Eur EE%sT 1991 853 2:00 E-Eur EE%sT 1997 854 2:00 EU EE%sT 1089 2:00 C-Eur EE%sT 1998 Sep 22 1090 2:00 EU EE%sT 1999 Oct 31 4:00 1092 2:00 EU EE%sT 1145 2:00 Finland EE%sT 1983 [all …]
|
| /NextBSD/share/examples/pf/ |
| HD | queue4 | 8 # departments. CS department gets the half of the bandwidth, EE and IE
|
| /NextBSD/share/termcap/ |
| HD | termcap | 120 :hu=\E0:hd=\E9:if=/usr/share/tabset/std:is=\EE\EF\EJ: 129 :us=\EE:ue=\ER:so=\EW:se=\E&:tc=1620: 133 :co#124:us=\EE:ue=\ER:so=\EW:se=\E&:tc=1620: 176 :al=\EE:am:bs:bt=\EI:\ 192 :al=\EE:am:bt=\EI:ce=\Et:cl=\E*:dc=\EW:\ 216 :ue=\E[m:up=\E[A:us=\E[4m:EE=\E[m:BO=\E[0;7m:DS=\E[2m:\ 247 :ue=\E[m:up=\E[A:us=\E[4m:EE=\E[m:BO=\E[0;7m:DS=\E[2m:\ 270 :EE=\E[m:BO=\E[0;7m:CV=\E[=C:CI=\E[=1C:KM=/usr/lib/ua/kmap.s5: 367 :do=^J:al=\EE:dl=\EO:k1=\EP:l1=blue:k2=\EQ:\ 450 :k0=\E<:I0=f10:kI=\000:kh=\EH:kR=\EG:kP=\Eg:kF=\EE:kN=\EE:\ [all …]
|