Lines Matching refs:uptr
67 static const uptr kLinuxAppMemBeg = 0x000000000000ULL;
68 static const uptr kLinuxAppMemEnd = 0x04dfffffffffULL;
70 static const uptr kLinuxShadowMsk = 0x010000000000ULL;
72 static const uptr kLinuxShadowMsk = 0x200000000000ULL;
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) { in IsAppMem()
111 static inline bool IsShadowMem(uptr mem) { in IsShadowMem()
115 static inline uptr ShadowToMem(uptr shadow) { in ShadowToMem()
127 static inline uptr AlternativeAddress(uptr addr) { in AlternativeAddress()
136 void WriteMemoryProfile(char *buf, uptr buf_size);
140 uptr ALWAYS_INLINE GetThreadTrace(int tid) { in GetThreadTrace()
141 uptr p = kTraceMemBegin + (uptr)(tid * 2) * kTraceSize * sizeof(Event); in GetThreadTrace()
146 uptr ALWAYS_INLINE GetThreadTraceHeader(int tid) { in GetThreadTraceHeader()
147 uptr p = kTraceMemBegin + (uptr)(tid * 2 + 1) * kTraceSize * sizeof(Event); in GetThreadTraceHeader()
156 bool IsGlobalVar(uptr addr);