Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 //===- subzero/src/main.cpp - Entry point for bitcode translation ---------===// | 1 //===- subzero/src/main.cpp - Entry point for bitcode translation ---------===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| 11 /// \brief Defines the entry point for translating PNaCl bitcode into native | 11 /// \brief Defines the entry point for translating PNaCl bitcode into native |
| 12 /// code. | 12 /// code. |
| 13 /// | 13 /// |
| 14 //===----------------------------------------------------------------------===// | 14 //===----------------------------------------------------------------------===// |
| 15 | 15 |
| 16 #include "IceBrowserCompileServer.h" | 16 #include "IceBrowserCompileServer.h" |
| 17 #include "IceBuildDefs.h" | 17 #include "IceBuildDefs.h" |
| 18 #include "IceCompileServer.h" | 18 #include "IceCompileServer.h" |
| 19 #ifdef ALLOW_LINUX_MALLOC_PROFILE | |
|
John
2016/03/15 15:19:07
if you guard entire LinuxMallocProfiling.h file wi
sehr
2016/03/17 16:47:14
Actually, it should have been completely removed h
| |
| 20 #include "LinuxMallocProfiling.h" | |
| 21 #endif // ALLOW_LINUX_MALLOC_PROFILE | |
| 19 | 22 |
| 20 #ifdef __pnacl__ | 23 #ifdef __pnacl__ |
| 21 #include <malloc.h> | 24 #include <malloc.h> |
| 22 #endif // __pnacl__ | 25 #endif // __pnacl__ |
| 23 | 26 |
| 24 /// Depending on whether we are building the compiler for the browser or | 27 /// Depending on whether we are building the compiler for the browser or |
| 25 /// standalone, we will end up creating a Ice::BrowserCompileServer or | 28 /// standalone, we will end up creating a Ice::BrowserCompileServer or |
| 26 /// Ice::CLCompileServer object. Method | 29 /// Ice::CLCompileServer object. Method |
| 27 /// Ice::CompileServer::runAndReturnErrorCode is used for the invocation. | 30 /// Ice::CompileServer::runAndReturnErrorCode is used for the invocation. |
| 28 /// There are no real commandline arguments in the browser case. They are | 31 /// There are no real commandline arguments in the browser case. They are |
| 29 /// supplied via IPC so argc, and argv are not used in that case. | 32 /// supplied via IPC so argc, and argv are not used in that case. |
| 30 /// We can only compile the Ice::BrowserCompileServer object with the PNaCl | 33 /// We can only compile the Ice::BrowserCompileServer object with the PNaCl |
| 31 /// compiler toolchain, when building Subzero as a sandboxed translator. | 34 /// compiler toolchain, when building Subzero as a sandboxed translator. |
| 32 int main(int argc, char **argv) { | 35 int main(int argc, char **argv) { |
| 33 #ifdef __pnacl__ | 36 #ifdef __pnacl__ |
| 34 #define M_GRANULARITY (-2) | 37 #define M_GRANULARITY (-2) |
| 35 // PNaCl's default malloc implementation grabs small chunks of memory with | 38 // PNaCl's default malloc implementation grabs small chunks of memory with |
| 36 // mmap at a time, hence causing significant slowdowns. This call ensures that | 39 // mmap at a time, hence causing significant slowdowns. This call ensures that |
| 37 // mmap is used to allocate 16MB at a time, to amortize the system call cost. | 40 // mmap is used to allocate 16MB at a time, to amortize the system call cost. |
| 38 mallopt(M_GRANULARITY, 16 * 1024 * 1024); | 41 mallopt(M_GRANULARITY, 16 * 1024 * 1024); |
| 39 #undef M_GRANULARITY | 42 #undef M_GRANULARITY |
| 40 #endif // __pnacl__ | 43 #endif // __pnacl__ |
| 41 | 44 |
| 42 if (Ice::BuildDefs::browser()) { | 45 if (Ice::BuildDefs::browser()) { |
| 43 assert(argc == 1); | 46 assert(argc == 1); |
| 44 return Ice::BrowserCompileServer().runAndReturnErrorCode(); | 47 return Ice::BrowserCompileServer().runAndReturnErrorCode(); |
| 45 } | 48 } |
| 46 return Ice::CLCompileServer(argc, argv).runAndReturnErrorCode(); | 49 return Ice::CLCompileServer(argc, argv).runAndReturnErrorCode(); |
| 47 } | 50 } |
| OLD | NEW |