Commit f10c5574 authored by baptiste.afsa@arm.com's avatar baptiste.afsa@arm.com

ARM64: Enable low level profiling.

R=ulan@chromium.org

Review URL: https://codereview.chromium.org/353643003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21965 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 9e121d0d
......@@ -564,6 +564,8 @@ void LowLevelLogger::LogCodeInfo() {
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
......
......@@ -49,7 +49,8 @@ _ARCH_MAP = {
"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"
}
......
......@@ -351,7 +351,8 @@ class LogReader(object):
"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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment