summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-01-08 20:15:57 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-01-08 20:15:57 +0000
commite269a1ac1cd795135e91e42527a9814f4807c75a (patch)
treef8630bf255a9d6feee23601bd82f592cb8614dcb /lib
parent9dacd128b4539b8100e97b973ec10cc36d712849 (diff)
downloadllvm-e269a1ac1cd795135e91e42527a9814f4807c75a.tar.gz
llvm-e269a1ac1cd795135e91e42527a9814f4807c75a.tar.bz2
llvm-e269a1ac1cd795135e91e42527a9814f4807c75a.tar.xz
Use size_t instead of long to represent memory usage. long is 32 bits
on 64-bit Windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19393 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/Timer.cpp10
-rw-r--r--lib/System/Unix/Process.cpp4
-rw-r--r--lib/System/Unix/Process.inc4
-rw-r--r--lib/System/Win32/Process.cpp4
-rw-r--r--lib/System/Win32/Process.inc4
5 files changed, 13 insertions, 13 deletions
diff --git a/lib/Support/Timer.cpp b/lib/Support/Timer.cpp
index 38a8b449f3..bea81648ef 100644
--- a/lib/Support/Timer.cpp
+++ b/lib/Support/Timer.cpp
@@ -93,15 +93,15 @@ Timer::~Timer() {
}
}
-static inline long getMemUsage() {
+static inline size_t getMemUsage() {
if (TrackSpace)
- return (long)sys::Process::GetMallocUsage();
+ return sys::Process::GetMallocUsage();
return 0;
}
struct TimeRecord {
double Elapsed, UserTime, SystemTime;
- long MemUsed;
+ size_t MemUsed;
};
static TimeRecord getTimeRecord(bool Start) {
@@ -111,7 +111,7 @@ static TimeRecord getTimeRecord(bool Start) {
sys::TimeValue user(0,0);
sys::TimeValue sys(0,0);
- long MemUsed = 0;
+ size_t MemUsed = 0;
if (Start) {
sys::Process::GetTimeUsage(now,user,sys);
MemUsed = getMemUsage();
@@ -171,7 +171,7 @@ void Timer::sum(const Timer &T) {
/// currently active timers, which will be printed when the timer group prints
///
void Timer::addPeakMemoryMeasurement() {
- long MemUsed = getMemUsage();
+ size_t MemUsed = getMemUsage();
for (std::vector<Timer*>::iterator I = ActiveTimers.begin(),
E = ActiveTimers.end(); I != E; ++I)
diff --git a/lib/System/Unix/Process.cpp b/lib/System/Unix/Process.cpp
index cccd3ffcb6..1c1373ebb5 100644
--- a/lib/System/Unix/Process.cpp
+++ b/lib/System/Unix/Process.cpp
@@ -47,7 +47,7 @@ Process::GetPageSize()
static char* som = reinterpret_cast<char*>(::sbrk(0));
#endif
-uint64_t
+size_t
Process::GetMallocUsage()
{
#if defined(HAVE_MALLINFO)
@@ -68,7 +68,7 @@ Process::GetMallocUsage()
#endif
}
-uint64_t
+size_t
Process::GetTotalMemoryUsage()
{
#if defined(HAVE_MALLINFO)
diff --git a/lib/System/Unix/Process.inc b/lib/System/Unix/Process.inc
index cccd3ffcb6..1c1373ebb5 100644
--- a/lib/System/Unix/Process.inc
+++ b/lib/System/Unix/Process.inc
@@ -47,7 +47,7 @@ Process::GetPageSize()
static char* som = reinterpret_cast<char*>(::sbrk(0));
#endif
-uint64_t
+size_t
Process::GetMallocUsage()
{
#if defined(HAVE_MALLINFO)
@@ -68,7 +68,7 @@ Process::GetMallocUsage()
#endif
}
-uint64_t
+size_t
Process::GetTotalMemoryUsage()
{
#if defined(HAVE_MALLINFO)
diff --git a/lib/System/Win32/Process.cpp b/lib/System/Win32/Process.cpp
index dc4664109d..392bac2e47 100644
--- a/lib/System/Win32/Process.cpp
+++ b/lib/System/Win32/Process.cpp
@@ -51,7 +51,7 @@ Process::GetPageSize() {
return PageSize;
}
-uint64_t
+size_t
Process::GetMallocUsage()
{
_HEAPINFO hinfo;
@@ -65,7 +65,7 @@ Process::GetMallocUsage()
return size;
}
-uint64_t
+size_t
Process::GetTotalMemoryUsage()
{
PROCESS_MEMORY_COUNTERS pmc;
diff --git a/lib/System/Win32/Process.inc b/lib/System/Win32/Process.inc
index dc4664109d..392bac2e47 100644
--- a/lib/System/Win32/Process.inc
+++ b/lib/System/Win32/Process.inc
@@ -51,7 +51,7 @@ Process::GetPageSize() {
return PageSize;
}
-uint64_t
+size_t
Process::GetMallocUsage()
{
_HEAPINFO hinfo;
@@ -65,7 +65,7 @@ Process::GetMallocUsage()
return size;
}
-uint64_t
+size_t
Process::GetTotalMemoryUsage()
{
PROCESS_MEMORY_COUNTERS pmc;