| /src/external/apache2/llvm/dist/llvm/include/llvm-c/ |
| OrcEE.h | 41 LLVMOrcExecutionSessionRef ES);
|
| Orc.h | 328 LLVMOrcExecutionSessionRef ES, LLVMOrcErrorReporterFunction ReportError, 338 LLVMOrcExecutionSessionGetSymbolStringPool(LLVMOrcExecutionSessionRef ES); 365 LLVMOrcExecutionSessionIntern(LLVMOrcExecutionSessionRef ES, const char *Name); 483 LLVMOrcExecutionSessionCreateBareJITDylib(LLVMOrcExecutionSessionRef ES, 499 LLVMOrcExecutionSessionCreateJITDylib(LLVMOrcExecutionSessionRef ES, 508 LLVMOrcExecutionSessionGetJITDylibByName(LLVMOrcExecutionSessionRef ES,
|
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| KaleidoscopeJIT.h | 41 std::unique_ptr<ExecutionSession> ES; 54 std::unique_ptr<ExecutionSession> ES, 56 : TPC(std::move(TPC)), ES(std::move(ES)), DL(std::move(DL)), 57 Mangle(*this->ES, this->DL), 58 ObjectLayer(*this->ES, 60 CompileLayer(*this->ES, ObjectLayer, 62 OptimizeLayer(*this->ES, CompileLayer, optimizeModule), 63 MainJD(this->ES->createBareJITDylib("<main>")) { 70 if (auto Err = ES->endSession() [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| KaleidoscopeJIT.h | 36 std::unique_ptr<ExecutionSession> ES; 48 std::unique_ptr<ExecutionSession> ES, 50 : TPC(std::move(TPC)), ES(std::move(ES)), DL(std::move(DL)), 51 Mangle(*this->ES, this->DL), 52 ObjectLayer(*this->ES, 54 CompileLayer(*this->ES, ObjectLayer, 56 MainJD(this->ES->createBareJITDylib("<main>")) { 63 if (auto Err = ES->endSession()) 64 ES->reportError(std::move(Err)) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/include/ |
| KaleidoscopeJIT.h | 36 std::unique_ptr<ExecutionSession> ES; 48 std::unique_ptr<ExecutionSession> ES, 50 : TPC(std::move(TPC)), ES(std::move(ES)), DL(std::move(DL)), 51 Mangle(*this->ES, this->DL), 52 ObjectLayer(*this->ES, 54 CompileLayer(*this->ES, ObjectLayer, 56 MainJD(this->ES->createBareJITDylib("<main>")) { 63 if (auto Err = ES->endSession()) 64 ES->reportError(std::move(Err)) [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| KaleidoscopeJIT.h | 43 std::unique_ptr<ExecutionSession> ES; 63 std::unique_ptr<ExecutionSession> ES, 66 : TPC(std::move(TPC)), ES(std::move(ES)), TPCIU(std::move(TPCIU)), 67 DL(std::move(DL)), Mangle(*this->ES, this->DL), 68 ObjectLayer(*this->ES, 70 CompileLayer(*this->ES, ObjectLayer, 72 OptimizeLayer(*this->ES, CompileLayer, optimizeModule), 73 CODLayer(*this->ES, OptimizeLayer, 76 MainJD(this->ES->createBareJITDylib("<main>")) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
| Mangling.h | 28 MangleAndInterner(ExecutionSession &ES, const DataLayout &DL); 32 ExecutionSession &ES; 53 static void add(ExecutionSession &ES, const ManglingOptions &MO, 61 getObjectSymbolInfo(ExecutionSession &ES, MemoryBufferRef ObjBuffer);
|
| Layer.h | 37 IRMaterializationUnit(ExecutionSession &ES, 61 static SymbolStringPtr getInitSymbol(ExecutionSession &ES, 70 IRLayer(ExecutionSession &ES, const IRSymbolMapper::ManglingOptions *&MO) 71 : ES(ES), MO(MO) {} 76 ExecutionSession &getExecutionSession() { return ES; } 115 ExecutionSession &ES; 138 ObjectLayer(ExecutionSession &ES); 142 ExecutionSession &getExecutionSession() { return ES; } 157 ExecutionSession &ES; [all...] |
| LazyReexports.h | 43 LazyCallThroughManager(ExecutionSession &ES, 79 ExecutionSession &ES; 91 LocalLazyCallThroughManager(ExecutionSession &ES, 93 : LazyCallThroughManager(ES, ErrorHandlerAddr, nullptr) {} 119 Create(ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr) { 121 new LocalLazyCallThroughManager(ES, ErrorHandlerAddr)); 133 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES,
|
| LLJIT.h | 62 ExecutionSession &getExecutionSession() { return *ES; } 76 return ES->getJITDylibByName(Name); 86 return ES->createJITDylib(std::move(Name)); 120 return lookupLinkerMangled(JD, ES->intern(Name)); 185 return ES->intern(mangle(UnmangledName)); 190 createObjectLinkingLayer(LLJITBuilderState &S, ExecutionSession &ES); 202 std::unique_ptr<ExecutionSession> ES; 263 std::unique_ptr<ExecutionSession> ES; 281 SetterImpl &setExecutionSession(std::unique_ptr<ExecutionSession> ES) { 282 impl().ES = std::move(ES) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/ |
| IRTransformLayer.cpp | 15 IRTransformLayer::IRTransformLayer(ExecutionSession &ES, IRLayer &BaseLayer, 17 : IRLayer(ES, BaseLayer.getManglingOptions()), BaseLayer(BaseLayer),
|
| Mangling.cpp | 21 MangleAndInterner::MangleAndInterner(ExecutionSession &ES, const DataLayout &DL) 22 : ES(ES), DL(DL) {} 30 return ES.intern(MangledName); 33 void IRSymbolMapper::add(ExecutionSession &ES, const ManglingOptions &MO, 40 MangleAndInterner Mangle(ES, GVs[0]->getParent()->getDataLayout()); 86 getObjectSymbolInfo(ExecutionSession &ES, MemoryBufferRef ObjBuffer) { 119 auto InternedName = ES.intern(*Name); 144 InitSymbol = ES.intern(InitSymString);
|
| LazyReexports.cpp | 20 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP) 21 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(TP) {} 40 ES.reportError(std::move(Err)); 78 // Declaring SLS and the callback outside of the call to ES.lookup is a 98 ES.lookup(LookupKind::Static, 106 createLocalLazyCallThroughManager(const Triple &T, ExecutionSession &ES, 116 return LocalLazyCallThroughManager::Create<OrcAArch64>(ES, 120 return LocalLazyCallThroughManager::Create<OrcI386>(ES, ErrorHandlerAddr); 123 return LocalLazyCallThroughManager::Create<OrcMips32Be>(ES, [all...] |
| ObjectTransformLayer.cpp | 19 ObjectTransformLayer::ObjectTransformLayer(ExecutionSession &ES, 22 : BaseT(ES), BaseLayer(BaseLayer), Transform(std::move(Transform)) {}
|
| Layer.cpp | 34 ExecutionSession &ES, const IRSymbolMapper::ManglingOptions &MO, 40 MangleAndInterner Mangle(ES, this->TSM.getModuleUnlocked()->getDataLayout()); 92 InitSymbol = ES.intern(InitSymbolName); 146 auto &ES = R->getTargetJITDylib().getExecutionSession(); 150 LLVM_DEBUG(ES.runSessionLocked( 153 LLVM_DEBUG(ES.runSessionLocked([&]() { 160 ObjectLayer::ObjectLayer(ExecutionSession &ES) : ES(ES) {}
|
| DebugObjectManagerPlugin.cpp | 126 DebugObject(JITLinkContext &Ctx, ExecutionSession &ES) : Ctx(Ctx), ES(ES) {} 137 ES.reportError(std::move(Err)); 151 ExecutionSession &ES; 185 Create(MemoryBufferRef Buffer, JITLinkContext &Ctx, ExecutionSession &ES); 205 ExecutionSession &ES); 211 JITLinkContext &Ctx, ExecutionSession &ES) 212 : DebugObject(Ctx, ES), Buffer(std::move(Buffer)) { 248 ExecutionSession &ES) { [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/SpeculativeJIT/ |
| SpeculativeJIT.cpp | 52 auto ES = std::make_unique<ExecutionSession>(); 55 JTMB->getTargetTriple(), *ES, 73 std::move(ES), std::move(*DL), std::move(*JTMB), std::move(*LCTMgr), 78 ExecutionSession &getES() { return *ES; } 85 return ES->lookup({&MainJD}, Mangle(UnmangledName)); 100 std::unique_ptr<ExecutionSession> ES, DataLayout DL, 105 : ES(std::move(ES)), DL(std::move(DL)), 106 MainJD(this->ES->createBareJITDylib("<main>")), LCTMgr(std::move(LCTMgr)), 107 CompileLayer(*this->ES, ObjLayer [all...] |
| /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| KaleidoscopeJIT.h | 130 std::unique_ptr<ExecutionSession> ES; 150 std::unique_ptr<ExecutionSession> ES, 153 : TPC(std::move(TPC)), ES(std::move(ES)), TPCIU(std::move(TPCIU)), 154 DL(std::move(DL)), Mangle(*this->ES, this->DL), 155 ObjectLayer(*this->ES, 157 CompileLayer(*this->ES, ObjectLayer, 159 OptimizeLayer(*this->ES, CompileLayer, optimizeModule), 161 MainJD(this->ES->createBareJITDylib("<main>")) { 168 if (auto Err = ES->endSession() [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/ |
| bid_sqrt_macros.h | 139 UINT64 MY, ES, CY; 161 ES = (ARS.w[2] >> (k - 128)) | (ARS.w[3] << (192 - k)); 163 ES = ARS.w[2]; 173 ES = ARS.w[0]; 176 ES = ((SINT64) ES) >> 1; 178 if (((SINT64) ES) < 0) { 179 ES = -ES; 182 __mul_64x192_to_256 (AE0, ES, ARS0) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| PseudoSourceValue.cpp | 103 const char *ES, const TargetInstrInfo &TII) 104 : CallEntryPseudoSourceValue(ExternalSymbolCallEntry, TII), ES(ES) {} 146 PseudoSourceValueManager::getExternalSymbolCallEntry(const char *ES) { 148 ExternalCallEntries[ES]; 150 E = std::make_unique<ExternalSymbolPseudoSourceValue>(ES, TII);
|
| /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithCustomObjectLinkingLayer/ |
| LLJITWithCustomObjectLinkingLayer.cpp | 48 [&](ExecutionSession &ES, const Triple &TT) { 50 ES, std::make_unique<jitlink::InProcessMemoryManager>());
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/ |
| DIPrinter.h | 72 raw_ostream &ES; 88 PlainPrinterBase(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) 89 : DIPrinter(), OS(OS), ES(ES), Config(Config) {} 113 LLVMPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) 114 : PlainPrinterBase(OS, ES, Config) {} 122 GNUPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) 123 : PlainPrinterBase(OS, ES, Config) {}
|
| /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/ |
| LLJITWithRemoteDebugging.cpp | 137 ExecutionSession &ES) { 141 ExitOnErr(JITLinkExecutor::ConnectTCPSocket(OOPExecutorConnect, ES)); 160 ExitOnErr(Exec->launch(ES)); 180 auto ES = std::make_unique<ExecutionSession>(); 181 ES->setErrorReporter([&](Error Err) { ExitOnErr(std::move(Err)); }); 184 std::unique_ptr<JITLinkExecutor> Executor = connectExecutor(argv[0], *ES); 220 .setExecutionSession(std::move(ES))
|
| RemoteJITUtils.cpp | 50 RemoteTargetProcessControl(ExecutionSession &ES, 67 ExecutionSession &ES, std::unique_ptr<RPCChannel> Channel, 69 : BaseT(ES.getSymbolStringPool(), *Endpoint, 70 [&ES](Error Err) { ES.reportError(std::move(Err)); }), 111 JITLinkExecutor::operator()(ExecutionSession &ES, const Triple &TT) { 112 return std::make_unique<ObjectLinkingLayer>(ES, TPC->getMemMgr()); 183 Error ChildProcessJITLinkExecutor::launch(ExecutionSession &ES) { 192 ExecutionSession &ES) { 200 Error ChildProcessJITLinkExecutor::launch(ExecutionSession &ES) { [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/Solaris/sys/ |
| regset.h | 20 #undef ES
|