Home
last modified time | relevance | path

Searched refs:TP (Results 1 – 25 of 80) sorted by relevance

1234

/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DLazyReexports.h44 JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP);
71 void setTrampolinePool(TrampolinePool &TP) { this->TP = &TP; } in setTrampolinePool() argument
81 TrampolinePool *TP = nullptr; variable
96 auto TP = LocalTrampolinePool<ORCABI>::Create( in init() local
104 if (!TP) in init()
105 return TP.takeError(); in init()
107 this->TP = std::move(*TP); in init()
108 setTrampolinePool(*this->TP); in init()
112 std::unique_ptr<TrampolinePool> TP; variable
H A DIndirectionUtils.h218 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, in JITCompileCallbackManager() argument
221 : TP(std::move(TP)), ES(ES), in JITCompileCallbackManager()
225 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { in setTrampolinePool() argument
226 this->TP = std::move(TP); in setTrampolinePool()
231 std::unique_ptr<TrampolinePool> TP; variable
266 auto TP = LocalTrampolinePool<ORCABI>::Create( in LocalJITCompileCallbackManager() local
272 if (!TP) { in LocalJITCompileCallbackManager()
273 Err = TP.takeError(); in LocalJITCompileCallbackManager()
277 setTrampolinePool(std::move(*TP)); in LocalJITCompileCallbackManager()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXType.cpp87 if (!TP) in GetTypeKind()
453 if (!TP) in clang_getPointeeType()
477 if (TP) in clang_getPointeeType()
494 if (!TP) in clang_getTypeDeclaration()
525 if (TP) in clang_getTypeDeclaration()
808 if (TP) { in clang_getElementType()
843 if (TP) { in clang_getNumElements()
866 if (TP) { in clang_getArrayElementType()
892 if (TP) { in clang_getArraySize()
936 if (TP && TP->getTypeClass() == Type::MemberPointer) { in clang_Type_getClassType()
[all …]
/llvm-project-15.0.7/llvm/unittests/Support/
H A DChrono.cpp25 TimePoint<> TP; in TEST() local
26 EXPECT_EQ(TP, toTimePoint(toTimeT(TP))); in TEST()
27 TP += seconds(1); in TEST()
28 EXPECT_EQ(TP, toTimePoint(toTimeT(TP))); in TEST()
29 TP += hours(47); in TEST()
30 EXPECT_EQ(TP, toTimePoint(toTimeT(TP))); in TEST()
H A DTaskQueueTest.cpp25 ThreadPool TP(hardware_concurrency(1)); in TEST_F() local
26 TaskQueue TQ(TP); in TEST_F()
69 ThreadPool TP(hardware_concurrency(1)); in TEST_F() local
70 TaskQueue TQ(TP); in TEST_F()
99 ThreadPool TP(hardware_concurrency(1)); in TEST_F() local
100 TaskQueue TQ(TP); in TEST_F()
/llvm-project-15.0.7/libcxx/test/std/time/time.point/time.point.special/
H A Dmax.pass.cpp24 typedef std::chrono::time_point<Clock, Duration> TP; in main() typedef
25 LIBCPP_ASSERT_NOEXCEPT(TP::max()); in main()
27 ASSERT_NOEXCEPT( TP::max()); in main()
29 assert(TP::max() == TP(Duration::max())); in main()
H A Dmin.pass.cpp24 typedef std::chrono::time_point<Clock, Duration> TP; in main() typedef
25 LIBCPP_ASSERT_NOEXCEPT(TP::max()); in main()
27 ASSERT_NOEXCEPT( TP::max()); in main()
29 assert(TP::min() == TP(Duration::min())); in main()
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DUnix.h87 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec() argument
91 RetVal.tv_sec = toTimeT(TP); in toTimeSpec()
92 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeSpec()
97 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal() argument
101 RetVal.tv_sec = toTimeT(TP); in toTimeVal()
102 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeVal()
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Darm64-tls-initial-exec.ll18 ; CHECK: mrs x[[TP:[0-9]+]], TPIDR_EL0
19 ; CHECK: ldr w0, [x[[TP]], x[[TP_OFFSET]]]
25 ; CHECK-TINY: mrs x[[TP:[0-9]+]], TPIDR_EL0
26 ; CHECK-TINY: ldr w0, [x[[TP]], x[[TP_OFFSET]]]
39 ; CHECK: mrs [[TP:x[0-9]+]], TPIDR_EL0
40 ; CHECK: add x0, [[TP]], [[TP_OFFSET]]
46 ; CHECK-TINY: mrs [[TP:x[0-9]+]], TPIDR_EL0
47 ; CHECK-TINY: add x0, [[TP]], x[[TP_OFFSET]]
H A Darm64-tls-dynamics.ll37 ; CHECK: mrs x[[TP:[0-9]+]], TPIDR_EL0
38 ; CHECK: ldr w0, [x[[TP]], x0]
39 ; CHECK-NOLD: mrs x[[TP:[0-9]+]], TPIDR_EL0
40 ; CHECK-NOLD: ldr w0, [x[[TP]], x0]
65 ; CHECK: mrs [[TP:x[0-9]+]], TPIDR_EL0
66 ; CHECK: add x0, [[TP]], x0
/llvm-project-15.0.7/llvm/lib/Support/
H A DChrono.cpp25 static inline struct tm getStructTM(TimePoint<> TP) { in getStructTM() argument
27 std::time_t OurTime = toTimeT(TP); in getStructTM()
43 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { in operator <<() argument
44 struct tm LT = getStructTM(TP); in operator <<()
49 long((TP.time_since_epoch() % std::chrono::seconds(1)) in operator <<()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp390 if (TP.hasError()) in forceArbitrary()
409 if (TP.hasError()) in EnforceInteger()
419 if (TP.hasError()) in EnforceFloatingPoint()
429 if (TP.hasError()) in EnforceScalar()
439 if (TP.hasError()) in EnforceVector()
488 if (TP.hasError()) in EnforceSmallerThan()
608 if (TP.hasError()) in EnforceVectorEltTypeIs()
660 if (TP.hasError()) in EnforceVectorSubVectorTypeIs()
728 if (TP.hasError()) in EnforceSameNumElts()
781 if (TP.hasError()) in EnforceSameSize()
[all …]
H A DCodeGenDAGPatterns.h262 TypeInfer(TreePattern &T) : TP(T), ForceMode(0) {} in TypeInfer()
361 TreePattern &TP; member
422 TreePattern &TP) const;
825 TreePattern &TP,
838 TreePattern &TP);
840 TreePattern &TP);
842 TreePattern &TP);
851 bool ContainsUnresolvedType(TreePattern &TP) const;
991 TP.getInfer().expandOverloads(VTS); in UpdateNodeType()
999 TP.getInfer().expandOverloads(VTS); in UpdateNodeType()
[all …]
/llvm-project-15.0.7/clang/tools/diagtool/
H A DTreeView.cpp173 TreePrinter TP(out); in run() local
174 TP.Internal = Internal; in run()
175 TP.showKey(); in run()
176 return ShowAll ? TP.showAll() : TP.showGroup(RootGroup); in run()
/llvm-project-15.0.7/llvm/test/CodeGen/SystemZ/
H A Dtls-03.ll18 ; CHECK-MAIN: sllg [[TP:%r[0-5]]], [[HIGH]], 32
19 ; CHECK-MAIN: ear [[TP]], %a1
20 ; CHECK-MAIN: agr %r2, [[TP]]
H A Dtls-04.ll23 ; CHECK-MAIN: sllg [[TP:%r[0-5]]], [[HIGH]], 32
24 ; CHECK-MAIN: ear [[TP]], %a1
25 ; CHECK-MAIN: agr %r2, [[TP]]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DChrono.h37 inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT() argument
40 time_point_cast<system_clock::time_point::duration>(TP)); in toTimeT()
60 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
72 static void format(const sys::TimePoint<> &TP, llvm::raw_ostream &OS,
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DLazyReexports.cpp20 ExecutionSession &ES, JITTargetAddress ErrorHandlerAddr, TrampolinePool *TP) in LazyCallThroughManager() argument
21 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(TP) {} in LazyCallThroughManager()
26 assert(TP && "TrampolinePool not set"); in getCallThroughTrampoline()
29 auto Trampoline = TP->getTrampoline(); in getCallThroughTrampoline()
H A DEPCIndirectionUtils.cpp279 if (TP) in cleanup()
281 static_cast<EPCTrampolinePool &>(*TP).deallocatePool()); in cleanup()
325 if (!TP) in getTrampolinePool()
326 TP = std::make_unique<EPCTrampolinePool>(*this); in getTrampolinePool()
327 return *TP; in getTrampolinePool()
/llvm-project-15.0.7/llvm/test/Transforms/SafeStack/AArch64/
H A Dabi.ll6 ; CHECK: %[[TP:.*]] = call i8* @llvm.thread.pointer()
7 ; CHECK: %[[SPA0:.*]] = getelementptr i8, i8* %[[TP]], i32 72
H A Dunreachable.ll5 ; CHECK: %[[TP:.*]] = call i8* @llvm.thread.pointer()
6 ; CHECK: %[[SPA0:.*]] = getelementptr i8, i8* %[[TP]], i32 72
/llvm-project-15.0.7/clang/include/clang/Tooling/Refactoring/
H A DRecursiveSymbolVisitor.h101 if (const Type *TP = Loc.getTypePtr()) { in VisitTypeLoc() local
102 if (TP->getTypeClass() == clang::Type::Record) in VisitTypeLoc()
103 return visit(TP->getAsCXXRecordDecl(), TypeBeginLoc, TypeEndLoc); in VisitTypeLoc()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp48 const Type *TP = T.getTypePtr(); in hasPointerToPointerSizedType() local
49 QualType PointeeT = TP->getPointeeType(); in hasPointerToPointerSizedType()
62 if (const Type *TElem = TP->getArrayElementTypeNoTypeQual()) in hasPointerToPointerSizedType()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DMemory.inc77 TOKEN_PRIVILEGES TP{};
78 TP.PrivilegeCount = 1;
79 TP.Privileges[0].Luid = Luid;
80 TP.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
81 if (!AdjustTokenPrivileges(Token, FALSE, &TP, 0, 0, 0)) {
/llvm-project-15.0.7/lld/test/ELF/
H A Dppc64-tls-vaddr-align.s18 ## p_vaddr rounded down to p_align has TP offset -0x7000.
19 ## The first address of PT_TLS (p_vaddr) has TP offset (p_vaddr%p_align - 0x7000).

1234