Revision: 9944 Author: [email protected] Date: Wed Nov 9 10:36:31 2011 Log: MIPS: Enable the ll_prof profiler on MIPS.
BUG= TEST= Review URL: http://codereview.chromium.org/8509006 Patch from Gergely Kis <[email protected]>. http://code.google.com/p/v8/source/detail?r=9944 Modified: /branches/bleeding_edge/src/log.cc /branches/bleeding_edge/tools/ll_prof.py ======================================= --- /branches/bleeding_edge/src/log.cc Thu Sep 29 08:07:00 2011 +++ /branches/bleeding_edge/src/log.cc Wed Nov 9 10:36:31 2011 @@ -1450,6 +1450,8 @@ const char arch[] = "x64"; #elif V8_TARGET_ARCH_ARM const char arch[] = "arm"; +#elif V8_TARGET_ARCH_MIPS + const char arch[] = "mips"; #else const char arch[] = "unknown"; #endif ======================================= --- /branches/bleeding_edge/tools/ll_prof.py Mon Sep 19 11:36:47 2011 +++ /branches/bleeding_edge/tools/ll_prof.py Wed Nov 9 10:36:31 2011 @@ -334,6 +334,7 @@ _ARCH_TO_POINTER_TYPE_MAP = { "ia32": ctypes.c_uint32, "arm": ctypes.c_uint32, + "mips": ctypes.c_uint32, "x64": ctypes.c_uint64 } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
