Index: src/full-codegen.h |
diff --git a/src/full-codegen.h b/src/full-codegen.h |
index 969a98d93a1ef9b6e88d949c8c7a6e8207ac4649..dc5ac6af272e63ead3d922ff44ec2f20d04d60e5 100644 |
--- a/src/full-codegen.h |
+++ b/src/full-codegen.h |
@@ -123,14 +123,15 @@ class FullCodeGenerator: public AstVisitor { |
static const int kMaxBackEdgeWeight = 127; |
+ // Platform-specific code size multiplier. |
#if V8_TARGET_ARCH_IA32 |
- static const int kBackEdgeDistanceUnit = 100; |
+ static const int kCodeSizeMultiplier = 100; |
#elif V8_TARGET_ARCH_X64 |
- static const int kBackEdgeDistanceUnit = 162; |
+ static const int kCodeSizeMultiplier = 162; |
#elif V8_TARGET_ARCH_ARM |
- static const int kBackEdgeDistanceUnit = 142; |
+ static const int kCodeSizeMultiplier = 142; |
#elif V8_TARGET_ARCH_MIPS |
- static const int kBackEdgeDistanceUnit = 142; |
+ static const int kCodeSizeMultiplier = 142; |
#else |
#error Unsupported target architecture. |
#endif |