Home | History | Annotate | Download | only in rtl

Lines Matching refs:uptr

67 static const uptr kLinuxAppMemBeg = 0x000000000000ULL;
68 static const uptr kLinuxAppMemEnd = 0x00fcffffffffULL;
70 static const uptr kLinuxShadowMsk = 0x010000000000ULL;
72 static const uptr kLinuxShadowMsk = 0x100000000000ULL;
78 static const uptr kLinuxAppMemBeg = 0x290000000000ULL;
79 static const uptr kLinuxAppMemEnd = 0x7fffffffffffULL;
81 static const uptr kLinuxAppMemBeg = 0x7cf000000000ULL;
82 static const uptr kLinuxAppMemEnd = 0x7fffffffffffULL;
85 static const uptr kLinuxAppMemMsk = 0x7c0000000000ULL;
88 const uptr kTraceMemBegin = 0x056000000000ULL;
90 const uptr kTraceMemBegin = 0x600000000000ULL;
92 const uptr kTraceMemSize = 0x020000000000ULL;
103 static const uptr kLinuxShadowBeg = MemToShadow(kLinuxAppMemBeg);
104 static const uptr kLinuxShadowEnd =
107 static inline bool IsAppMem(uptr mem) {
111 static inline bool IsShadowMem(uptr mem) {
115 static inline uptr ShadowToMem(uptr shadow) {
127 static inline uptr AlternativeAddress(uptr addr) {
136 void WriteMemoryProfile(char *buf, uptr buf_size);
140 uptr ALWAYS_INLINE INLINE GetThreadTrace(int tid) {
141 uptr p = kTraceMemBegin + (uptr)tid * kTraceSize * sizeof(Event);
150 bool IsGlobalVar(uptr addr);
151 void GetThreadStackAndTls(bool main, uptr *stk_addr, uptr *stk_size,
152 uptr *tls_addr, uptr *tls_size);