blob: 9a388b4efc6dc55c8b8296e4572d92384016ada1 [file] [log] [blame]
Reid Spencer437b0792004-09-15 05:47:40 +00001//===- Win32/Process.cpp - Win32 Process Implementation ------- -*- C++ -*-===//
Michael J. Spencer1f6efa32010-11-29 18:16:10 +00002//
Reid Spencer437b0792004-09-15 05:47:40 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Michael J. Spencer1f6efa32010-11-29 18:16:10 +00007//
Reid Spencer437b0792004-09-15 05:47:40 +00008//===----------------------------------------------------------------------===//
9//
10// This file provides the Win32 specific implementation of the Process class.
11//
12//===----------------------------------------------------------------------===//
13
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000014#include "Windows.h"
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000015#include <psapi.h>
16#include <malloc.h>
Jeff Cohenc6dffe02005-01-01 22:54:05 +000017#include <io.h>
Daniel Dunbarbb0a6122011-09-23 23:23:36 +000018#include <direct.h>
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000019
Reid Spencer48fdf912006-06-01 19:03:21 +000020#ifdef __MINGW32__
21 #if (HAVE_LIBPSAPI != 1)
22 #error "libpsapi.a should be present"
23 #endif
24#else
25 #pragma comment(lib, "psapi.lib")
26#endif
Reid Spencer437b0792004-09-15 05:47:40 +000027
28//===----------------------------------------------------------------------===//
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000029//=== WARNING: Implementation here must contain only Win32 specific code
Reid Spencer437b0792004-09-15 05:47:40 +000030//=== and must not be UNIX code
31//===----------------------------------------------------------------------===//
32
Jeff Cohen23a1cf32005-02-19 03:01:13 +000033#ifdef __MINGW32__
Jeff Cohen2e5f4452004-12-23 03:44:40 +000034// This ban should be lifted when MinGW 1.0+ has defined this value.
35# define _HEAPOK (-2)
36#endif
37
Reid Spencer437b0792004-09-15 05:47:40 +000038namespace llvm {
39using namespace sys;
40
41// This function retrieves the page size using GetSystemInfo and is present
42// solely so it can be called once in Process::GetPageSize to initialize the
43// static variable PageSize.
44inline unsigned GetPageSizeOnce() {
45 // NOTE: A 32-bit application running under WOW64 is supposed to use
46 // GetNativeSystemInfo. However, this interface is not present prior
47 // to Windows XP so to use it requires dynamic linking. It is not clear
48 // how this affects the reported page size, if at all. One could argue
49 // that LLVM ought to run as 64-bits on a 64-bit system, anyway.
50 SYSTEM_INFO info;
51 GetSystemInfo(&info);
52 return static_cast<unsigned>(info.dwPageSize);
53}
54
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000055unsigned
Reid Spencer437b0792004-09-15 05:47:40 +000056Process::GetPageSize() {
57 static const unsigned PageSize = GetPageSizeOnce();
58 return PageSize;
59}
60
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000061size_t
Reid Spencer721d9aa2004-12-20 00:59:28 +000062Process::GetMallocUsage()
63{
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000064 _HEAPINFO hinfo;
65 hinfo._pentry = NULL;
66
67 size_t size = 0;
68
69 while (_heapwalk(&hinfo) == _HEAPOK)
70 size += hinfo._size;
71
72 return size;
Reid Spencer721d9aa2004-12-20 00:59:28 +000073}
74
Jeff Cohene269a1a2005-01-08 20:15:57 +000075size_t
Reid Spencer721d9aa2004-12-20 00:59:28 +000076Process::GetTotalMemoryUsage()
77{
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000078 PROCESS_MEMORY_COUNTERS pmc;
79 GetProcessMemoryInfo(GetCurrentProcess(), &pmc, sizeof(pmc));
80 return pmc.PagefileUsage;
Reid Spencer721d9aa2004-12-20 00:59:28 +000081}
82
83void
84Process::GetTimeUsage(
85 TimeValue& elapsed, TimeValue& user_time, TimeValue& sys_time)
86{
87 elapsed = TimeValue::now();
88
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000089 uint64_t ProcCreate, ProcExit, KernelTime, UserTime;
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000090 GetProcessTimes(GetCurrentProcess(), (FILETIME*)&ProcCreate,
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000091 (FILETIME*)&ProcExit, (FILETIME*)&KernelTime,
92 (FILETIME*)&UserTime);
Reid Spencer721d9aa2004-12-20 00:59:28 +000093
94 // FILETIME's are # of 100 nanosecond ticks (1/10th of a microsecond)
95 user_time.seconds( UserTime / 10000000 );
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000096 user_time.nanoseconds( unsigned(UserTime % 10000000) * 100 );
Reid Spencer721d9aa2004-12-20 00:59:28 +000097 sys_time.seconds( KernelTime / 10000000 );
Jeff Cohena1b3d3d2004-12-20 03:24:56 +000098 sys_time.nanoseconds( unsigned(KernelTime % 10000000) * 100 );
Reid Spencer721d9aa2004-12-20 00:59:28 +000099}
100
Reid Spencer93b34732005-04-21 16:12:57 +0000101int Process::GetCurrentUserId()
102{
103 return 65536;
104}
105
106int Process::GetCurrentGroupId()
107{
108 return 65536;
109}
110
Reid Spencer68fdcc12004-12-27 06:17:27 +0000111// Some LLVM programs such as bugpoint produce core files as a normal part of
112// their operation. To prevent the disk from filling up, this configuration item
113// does what's necessary to prevent their generation.
114void Process::PreventCoreFiles() {
Jeff Cohend79bcfd2005-02-18 07:05:18 +0000115 // Windows doesn't do core files, but it does do modal pop-up message
116 // boxes. As this method is used by bugpoint, preventing these pop-ups
117 // is the moral equivalent of suppressing core files.
118 SetErrorMode(SEM_FAILCRITICALERRORS |
119 SEM_NOGPFAULTERRORBOX |
120 SEM_NOOPENFILEERRORBOX);
Reid Spencer68fdcc12004-12-27 06:17:27 +0000121}
122
Jeff Cohenc6dffe02005-01-01 22:54:05 +0000123bool Process::StandardInIsUserInput() {
Dan Gohmanec080462009-09-11 20:46:33 +0000124 return FileDescriptorIsDisplayed(0);
Jeff Cohenc6dffe02005-01-01 22:54:05 +0000125}
126
127bool Process::StandardOutIsDisplayed() {
Dan Gohmanec080462009-09-11 20:46:33 +0000128 return FileDescriptorIsDisplayed(1);
Jeff Cohenc6dffe02005-01-01 22:54:05 +0000129}
130
131bool Process::StandardErrIsDisplayed() {
Dan Gohmanec080462009-09-11 20:46:33 +0000132 return FileDescriptorIsDisplayed(2);
133}
134
135bool Process::FileDescriptorIsDisplayed(int fd) {
NAKAMURA Takumi46cf7c52010-11-10 08:37:47 +0000136 DWORD Mode; // Unused
137 return (GetConsoleMode((HANDLE)_get_osfhandle(fd), &Mode) != 0);
Jeff Cohenc6dffe02005-01-01 22:54:05 +0000138}
139
Douglas Gregor01746742009-05-11 18:05:52 +0000140unsigned Process::StandardOutColumns() {
141 unsigned Columns = 0;
142 CONSOLE_SCREEN_BUFFER_INFO csbi;
143 if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
144 Columns = csbi.dwSize.X;
145 return Columns;
146}
147
148unsigned Process::StandardErrColumns() {
149 unsigned Columns = 0;
150 CONSOLE_SCREEN_BUFFER_INFO csbi;
151 if (GetConsoleScreenBufferInfo(GetStdHandle(STD_ERROR_HANDLE), &csbi))
152 Columns = csbi.dwSize.X;
153 return Columns;
154}
155
Torok Edwin6c8db342009-06-04 08:18:25 +0000156// It always has colors.
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000157bool Process::StandardErrHasColors() {
158 return StandardErrIsDisplayed();
159}
160
161bool Process::StandardOutHasColors() {
162 return StandardOutIsDisplayed();
163}
Torok Edwin6c8db342009-06-04 08:18:25 +0000164
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000165namespace {
166class DefaultColors
167{
168 private:
169 WORD defaultColor;
170 public:
171 DefaultColors()
172 :defaultColor(GetCurrentColor()) {}
173 static unsigned GetCurrentColor() {
174 CONSOLE_SCREEN_BUFFER_INFO csbi;
175 if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
176 return csbi.wAttributes;
177 return 0;
178 }
179 WORD operator()() const { return defaultColor; }
180};
181
182DefaultColors defaultColors;
183}
184
185bool Process::ColorNeedsFlush() {
186 return true;
187}
188
189const char *Process::OutputBold(bool bg) {
190 WORD colors = DefaultColors::GetCurrentColor();
191 if (bg)
192 colors |= BACKGROUND_INTENSITY;
193 else
194 colors |= FOREGROUND_INTENSITY;
195 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colors);
196 return 0;
197}
198
199const char *Process::OutputColor(char code, bool bold, bool bg) {
200 WORD colors;
201 if (bg) {
202 colors = ((code&1) ? BACKGROUND_RED : 0) |
203 ((code&2) ? BACKGROUND_GREEN : 0 ) |
204 ((code&4) ? BACKGROUND_BLUE : 0);
205 if (bold)
206 colors |= BACKGROUND_INTENSITY;
207 } else {
208 colors = ((code&1) ? FOREGROUND_RED : 0) |
209 ((code&2) ? FOREGROUND_GREEN : 0 ) |
210 ((code&4) ? FOREGROUND_BLUE : 0);
211 if (bold)
212 colors |= FOREGROUND_INTENSITY;
213 }
214 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colors);
215 return 0;
216}
217
Benjamin Kramer246de852012-04-16 08:56:50 +0000218static WORD GetConsoleTextAttribute(HANDLE hConsoleOutput) {
219 CONSOLE_SCREEN_BUFFER_INFO info;
220 GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &info);
221 return info.wAttributes;
222}
223
224const char *Process::OutputReverse() {
225 const WORD attributes
226 = GetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE));
227
228 const WORD foreground_mask = FOREGROUND_BLUE | FOREGROUND_GREEN |
229 FOREGROUND_RED | FOREGROUND_INTENSITY;
230 const WORD background_mask = BACKGROUND_BLUE | BACKGROUND_GREEN |
231 BACKGROUND_RED | BACKGROUND_INTENSITY;
232 const WORD color_mask = foreground_mask | background_mask;
233
234 WORD new_attributes =
235 ((attributes & FOREGROUND_BLUE )?BACKGROUND_BLUE :0) |
236 ((attributes & FOREGROUND_GREEN )?BACKGROUND_GREEN :0) |
237 ((attributes & FOREGROUND_RED )?BACKGROUND_RED :0) |
238 ((attributes & FOREGROUND_INTENSITY)?BACKGROUND_INTENSITY:0) |
239 ((attributes & BACKGROUND_BLUE )?FOREGROUND_BLUE :0) |
240 ((attributes & BACKGROUND_GREEN )?FOREGROUND_GREEN :0) |
241 ((attributes & BACKGROUND_RED )?FOREGROUND_RED :0) |
242 ((attributes & BACKGROUND_INTENSITY)?FOREGROUND_INTENSITY:0) |
243 0;
244 new_attributes = (attributes & ~color_mask) | (new_attributes & color_mask);
245
246 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), new_attributes);
247 return 0;
248}
249
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000250const char *Process::ResetColor() {
251 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), defaultColors());
252 return 0;
253}
254
Reid Spencer437b0792004-09-15 05:47:40 +0000255}