| /llvm-project-15.0.7/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrSPE.td | 17 bits<5> RT; 23 let Inst{6-10} = RT; 58 bits<5> RT; 64 let Inst{6-10} = RT; 104 bits<5> RT; 108 let Inst{6-10} = RT; 118 bits<5> RT; 123 let Inst{6-10} = RT; 146 [(set f64:$RT, (fabs f64:$RA))]>; 231 [(set f64:$RT, (fneg f64:$RA))]>; [all …]
|
| H A D | PPCMacroFusion.cpp | 113 const MachineOperand &RT = SecondMI.getOperand(0); in checkOpConstraints() local 114 if (!RT.isReg()) in checkOpConstraints() 118 if (!Register::isVirtualRegister(RT.getReg())) in checkOpConstraints() 122 (RT.getReg() == PPC::ZERO || RT.getReg() == PPC::ZERO8)) in checkOpConstraints()
|
| /llvm-project-15.0.7/libc/AOR_v20.02/math/test/ |
| H A D | ulp.h | 25 if (e > RT(emax) - RT(prec)) in RT() 26 e = RT(emax) - RT(prec); in RT() 32 return RT(emax) - RT(prec); in RT() 41 static double RT(ulperr) (RT(float) got, const struct RT(ret) * p, int r) in RT() function 47 if (RT(asuint) (got) == RT(asuint) (want)) in RT() 61 got = RT(copysign) (RT(halfinf), got); in RT() 90 static int RT(isok) (RT(float) ygot, int exgot, RT(float) ywant, int exwant, in RT() function 97 static int RT(isok_nofenv) (RT(float) ygot, RT(float) ywant) in RT() function 143 p->tail = RT(lscalbn) (yl - (RT(double)) 2 * RT(halfinf), -p->ulpexp); in T() 146 if (RT(fabs) (p->y) < RT(min_normal)) in T() [all …]
|
| /llvm-project-15.0.7/flang/lib/Lower/ |
| H A D | IterationSpace.cpp | 597 using RT = bool; typedef in __anoncf831cc01411::ArrayBaseFinder 624 RT find(const Fortran::evaluate::Component &x) { in find() 632 RT find(const Fortran::evaluate::ArrayRef &x) { in find() 650 RT find(const Fortran::evaluate::Triplet &x) { in find() 689 RT find(const std::unique_ptr<A> &x) { in find() 693 RT find(const std::shared_ptr<A> &x) { in find() 697 RT find(const A *x) { in find() 703 RT find(const std::optional<A> &x) { in find() 709 RT find(const std::variant<A...> &u) { in find() 713 RT find(const std::vector<A> &x) { in find() [all …]
|
| /llvm-project-15.0.7/compiler-rt/docs/ |
| H A D | BuildingCompilerRT.rst | 4 Building Compiler-RT 12 The instructions on this page are aimed at vendors who ship Compiler-RT as part of an 14 are a user merely trying to use Compiler-RT in your program, you most likely want to 35 The C++ compiler to use when building and testing Compiler-RT. 40 Compiler-RT specific options 47 Prefix for directories where built Compiler-RT artifacts should be installed. 59 Path where built Compiler-RT libraries should be installed. If a relative 66 Path where built Compiler-RT executables should be installed. If a relative 73 Path where Compiler-RT headers should be installed. If a relative 80 Path where Compiler-RT data should be installed. If a relative
|
| /llvm-project-15.0.7/clang/lib/Interpreter/ |
| H A D | IncrementalExecutor.cpp | 60 llvm::orc::ResourceTrackerSP RT = in addModule() local 62 ResourceTrackers[&PTU] = RT; in addModule() 64 return Jit->addIRModule(RT, {std::move(PTU.TheModule), TSCtx}); in addModule() 69 llvm::orc::ResourceTrackerSP RT = std::move(ResourceTrackers[&PTU]); in removeModule() local 70 if (!RT) in removeModule() 74 if (llvm::Error Err = RT->remove()) in removeModule()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| H A D | KaleidoscopeJIT.h | 93 Error add(ResourceTrackerSP RT, std::unique_ptr<FunctionAST> F) { in add() argument 94 return RT->getJITDylib().define( in add() 97 RT); in add() 204 Error addModule(ThreadSafeModule TSM, ResourceTrackerSP RT = nullptr) { 205 if (!RT) 206 RT = MainJD.getDefaultResourceTracker(); 208 return OptimizeLayer.add(RT, std::move(TSM)); 211 Error addAST(std::unique_ptr<FunctionAST> F, ResourceTrackerSP RT = nullptr) { 212 if (!RT) 213 RT = MainJD.getDefaultResourceTracker(); [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/iterator.primitives/iterator.traits/ |
| H A D | empty.fail.cpp | 73 …typedef T::reference RT; // expected-error-re {{no type named 'reference' in 'std:{{.*}}:i… in main() typedef 82 …typedef T::reference RT; // expected-error-re {{no type named 'reference' in 'std:{{.*}}:i… in main() typedef 91 …typedef T::reference RT; // expected-error-re {{no type named 'reference' in 'std:{{.*}}:i… in main() typedef 100 …typedef T::reference RT; // expected-error-re {{no type named 'reference' in 'std:{{.*}}:i… in main() typedef 109 …typedef T::reference RT; // expected-error-re {{no type named 'reference' in 'std:{{.*}}:i… in main() typedef 118 …typedef T::reference RT; // expected-error-re {{no type named 'reference' in 'std:{{.*}}:i… in main() typedef
|
| /llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | Core.h | 410 ResourceTrackerSP RT; 646 : JD(RT->getJITDylib()), RT(std::move(RT)), in MaterializationResponsibility() 652 ResourceTrackerSP RT; variable 1160 : MU(std::move(MU)), RT(RT) {} in UnmaterializedInfo() 1163 ResourceTracker *RT; member 1774 if (RT->isDefunct()) in withResourceKeyDo() 1776 F(RT->getKeyUnsafe()); in withResourceKeyDo() 1816 else if (RT) in define() 1828 if (!RT) in define() 1859 else if (RT) in define() [all …]
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/ |
| H A D | Layer.cpp | 24 Error IRLayer::add(ResourceTrackerSP RT, ThreadSafeModule TSM) { in add() argument 25 assert(RT && "RT can not be null"); in add() 26 auto &JD = RT->getJITDylib(); in add() 29 std::move(RT)); in add() 163 Error ObjectLayer::add(ResourceTrackerSP RT, std::unique_ptr<MemoryBuffer> O, in add() argument 165 assert(RT && "RT can not be null"); in add() 166 auto &JD = RT->getJITDylib(); in add() 169 std::move(RT)); in add() 172 Error ObjectLayer::add(ResourceTrackerSP RT, std::unique_ptr<MemoryBuffer> O) { in add() argument 176 return add(std::move(RT), std::move(O), std::move(*I)); in add()
|
| H A D | Core.cpp | 68 : RT(std::move(RT)) {} in ResourceTrackerDefunct() 673 return RT; in createResourceTracker() 936 if (MR.RT->isDefunct()) in resolve() 1038 if (MR.RT->isDefunct()) in emit() 1596 if (KV.second->RT == &SrcRT) in transferTracker() 1597 KV.second->RT = &DstRT; in transferTracker() 1607 MR->RT = &DstRT; in transferTracker() 2282 RT.makeDefunct(); in removeResourceTracker() 2283 std::tie(QueriesToFail, FailedSymbols) = RT.getJITDylib().removeTracker(RT); in removeResourceTracker() 2329 if (!RT.isDefunct()) in destroyResourceTracker() [all …]
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ReturnUndefChecker.cpp | 46 QualType RT = CallEvent::getDeclaredResultType(SFC->getDecl()); in checkPreStmt() local 57 if (!RT.isNull() && RT->isVoidType()) in checkPreStmt() 63 if (RT.isNull() && isa<BlockDecl>(SFC->getDecl()) && in checkPreStmt() 71 if (RT.isNull()) in checkPreStmt() 74 if (RT->isReferenceType()) { in checkPreStmt()
|
| /llvm-project-15.0.7/llvm/examples/OrcV2Examples/OrcV2CBindingsRemovableCode/ |
| H A D | OrcV2CBindingsRemovableCode.c | 94 LLVMOrcResourceTrackerRef RT; in main() local 99 RT = LLVMOrcJITDylibCreateResourceTracker(MainJD); in main() 101 if ((Err = LLVMOrcLLJITAddLLVMIRModuleWithRT(J, RT, TSM))) { in main() 131 if ((Err = LLVMOrcResourceTrackerRemove(RT))) { in main() 159 LLVMOrcReleaseResourceTracker(RT); in main()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
| H A D | KaleidoscopeJIT.h | 86 Error addModule(ThreadSafeModule TSM, ResourceTrackerSP RT = nullptr) { 87 if (!RT) 88 RT = MainJD.getDefaultResourceTracker(); 89 return CompileLayer.add(RT, std::move(TSM));
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/include/ |
| H A D | KaleidoscopeJIT.h | 90 Error addModule(ThreadSafeModule TSM, ResourceTrackerSP RT = nullptr) { 91 if (!RT) 92 RT = MainJD.getDefaultResourceTracker(); 93 return CompileLayer.add(RT, std::move(TSM));
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
| H A D | KaleidoscopeJIT.h | 93 Error addModule(ThreadSafeModule TSM, ResourceTrackerSP RT = nullptr) { 94 if (!RT) 95 RT = MainJD.getDefaultResourceTracker(); 97 return OptimizeLayer.add(RT, std::move(TSM));
|
| /llvm-project-15.0.7/libc/utils/tools/WrapperGen/ |
| H A D | Main.cpp | 116 llvm::StringRef RT(ReturnTypeString); in writeFunctionHeader() local 117 if (RT.startswith(NR)) { in writeFunctionHeader() 118 RT = RT.drop_front(NR.size() - 1); // - 1 because of the space. in writeFunctionHeader() 119 ReturnTypeString = std::string("[[noreturn]]") + std::string(RT); in writeFunctionHeader()
|
| /llvm-project-15.0.7/flang/lib/Optimizer/Builder/ |
| H A D | BoxValue.cpp | 48 using RT = llvm::SmallVector<mlir::Value>; in getTypeParams() typedef 57 [](const fir::CharBoxValue &x) -> RT { return {x.getLen()}; }, in getTypeParams() 58 [](const fir::CharArrayBoxValue &x) -> RT { return {x.getLen()}; }, in getTypeParams() 59 [&](const fir::BoxValue &) -> RT { in getTypeParams() 63 [&](const fir::MutableBoxValue &) -> RT { in getTypeParams() 69 [](const auto &) -> RT { return {}; }); in getTypeParams()
|
| /llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/ |
| H A D | ResourceTrackerTest.cpp | 135 auto RT = JD.createResourceTracker(); in TEST_F() local 136 cantFail(JD.define(std::move(MU), RT)); in TEST_F() 137 cantFail(RT->remove()); in TEST_F() 174 auto RT = JD.createResourceTracker(); in TEST_F() local 175 cantFail(JD.define(std::move(MU), RT)); in TEST_F() 177 cantFail(RT->remove()); in TEST_F() 208 auto RT = JD.createResourceTracker(); in TEST_F() local 209 cantFail(JD.define(std::move(MU), RT)); in TEST_F() 220 cantFail(RT->remove()); in TEST_F()
|
| /llvm-project-15.0.7/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
| H A D | KaleidoscopeJIT.h | 119 Error addModule(ThreadSafeModule TSM, ResourceTrackerSP RT = nullptr) { 120 if (!RT) 121 RT = MainJD.getDefaultResourceTracker(); 123 return CODLayer.add(RT, std::move(TSM));
|
| /llvm-project-15.0.7/clang/test/utils/update_cc_test_checks/Inputs/ |
| H A D | check-attributes.cpp | 2 struct RT { struct 10 struct RT Z; argument
|
| H A D | check-attributes.cpp.plain.expected | 3 struct RT { 11 struct RT Z; 21 // CHECK-NEXT: [[B:%.*]] = getelementptr inbounds [[STRUCT_RT:%.*]], %struct.RT* [[Z]], i32 0, i…
|
| H A D | check-attributes.cpp.funcattrs.expected | 3 struct RT { 11 struct RT Z; 22 // CHECK-NEXT: [[B:%.*]] = getelementptr inbounds [[STRUCT_RT:%.*]], %struct.RT* [[Z]], i32 0, i…
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | pr48848.cpp | 2 template <typename RT, typename ET> 3 void Decider(const RT &sp, ET &ep) { in Decider()
|
| /llvm-project-15.0.7/llvm/tools/llvm-mca/Views/ |
| H A D | InstructionInfoView.cpp | 74 double RT = IIVDEntry.RThroughput.value(); in printView() local 75 TempStream << format("%.2f", RT) << ' '; in printView() 76 if (RT < 10.0) in printView() 78 else if (RT < 100.0) in printView()
|