Revision: 21965
Author: [email protected]
Date: Tue Jun 24 12:40:20 2014 UTC
Log: ARM64: Enable low level profiling.
[email protected]
Review URL: https://codereview.chromium.org/353643003
http://code.google.com/p/v8/source/detail?r=21965
Modified:
/branches/bleeding_edge/src/log.cc
/branches/bleeding_edge/tools/disasm.py
/branches/bleeding_edge/tools/ll_prof.py
=======================================
--- /branches/bleeding_edge/src/log.cc Tue Jun 24 05:27:44 2014 UTC
+++ /branches/bleeding_edge/src/log.cc Tue Jun 24 12:40:20 2014 UTC
@@ -564,6 +564,8 @@
const char arch[] = "mips";
#elif V8_TARGET_ARCH_X87
const char arch[] = "x87";
+#elif V8_TARGET_ARCH_ARM64
+ const char arch[] = "arm64";
#else
const char arch[] = "unknown";
#endif
=======================================
--- /branches/bleeding_edge/tools/disasm.py Mon Jan 7 09:48:04 2013 UTC
+++ /branches/bleeding_edge/tools/disasm.py Tue Jun 24 12:40:20 2014 UTC
@@ -49,7 +49,8 @@
"ia32": "-m i386",
"x64": "-m i386 -M x86-64",
"arm": "-m arm", # Not supported by our objdump build.
- "mips": "-m mips" # Not supported by our objdump build.
+ "mips": "-m mips", # Not supported by our objdump build.
+ "arm64": "-m aarch64"
}
=======================================
--- /branches/bleeding_edge/tools/ll_prof.py Fri Dec 7 12:51:33 2012 UTC
+++ /branches/bleeding_edge/tools/ll_prof.py Tue Jun 24 12:40:20 2014 UTC
@@ -351,7 +351,8 @@
"ia32": ctypes.c_uint32,
"arm": ctypes.c_uint32,
"mips": ctypes.c_uint32,
- "x64": ctypes.c_uint64
+ "x64": ctypes.c_uint64,
+ "arm64": ctypes.c_uint64
}
_CODE_CREATE_TAG = "C"
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.