Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1092)

Unified Diff: src/full-codegen/full-codegen.h

Issue 1504023002: Fix Arm64 code size multiplier. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/full-codegen/full-codegen.h
diff --git a/src/full-codegen/full-codegen.h b/src/full-codegen/full-codegen.h
index 954d4c0d8103ff1a14076e4cc562565ee3e76a78..f82566a74d8c0da015ef696c906b19e683b56354 100644
--- a/src/full-codegen/full-codegen.h
+++ b/src/full-codegen/full-codegen.h
@@ -83,8 +83,7 @@ class FullCodeGenerator: public AstVisitor {
#elif V8_TARGET_ARCH_ARM
static const int kCodeSizeMultiplier = 149;
#elif V8_TARGET_ARCH_ARM64
-// TODO(all): Copied ARM value. Check this is sensible for ARM64.
- static const int kCodeSizeMultiplier = 149;
+ static const int kCodeSizeMultiplier = 220;
#elif V8_TARGET_ARCH_PPC64
static const int kCodeSizeMultiplier = 200;
#elif V8_TARGET_ARCH_PPC
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698