| /src/external/apache2/llvm/dist/llvm/include/llvm-c/ |
| OrcEE.h | 41 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/crypto/external/bsd/openssl.old/dist/test/ |
| CAssdsa.cnf | 16 countryName_default = ES 17 countryName_value = ES
|
| CAssrsa.cnf | 16 countryName_default = ES 17 countryName_value = ES
|
| Sssdsa.cnf | 16 countryName_default = ES 17 countryName_value = ES
|
| Sssrsa.cnf | 16 countryName_default = ES 17 countryName_value = ES
|
| /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...] |
| /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)) {}
|
| /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/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/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/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| infcall-nested-structs.c | 68 #define ES(NAME) struct { } NAME 80 struct struct_01_01 { ES(es1); struct { struct { tA a; } s1; } s2; }; 81 struct struct_01_02 { tA a; struct { struct { ES(es1); } s1; } s2; }; 82 struct struct_01_03 { struct { struct { ES(es1); } s1; } s2; ES(es1); struct { struct { tA a; } s3; } s4;}; 83 struct struct_01_04 { ES(es1); ES(es2); tA a; ES(es3); }; 87 struct struct_02_01 { ES(es1); struct { struct { tA a; tB b; } s1; } s2; }; 88 struct struct_02_02 { tA a; struct { struct { ES(es1); } s1; } s2; tB b; } [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| infcall-nested-structs.c | 68 #define ES(NAME) struct { } NAME 80 struct struct_01_01 { ES(es1); struct { struct { tA a; } s1; } s2; }; 81 struct struct_01_02 { tA a; struct { struct { ES(es1); } s1; } s2; }; 82 struct struct_01_03 { struct { struct { ES(es1); } s1; } s2; ES(es1); struct { struct { tA a; } s3; } s4;}; 83 struct struct_01_04 { ES(es1); ES(es2); tA a; ES(es3); }; 87 struct struct_02_01 { ES(es1); struct { struct { tA a; tB b; } s1; } s2; }; 88 struct struct_02_02 { tA a; struct { struct { ES(es1); } s1; } s2; tB b; } [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))
|