From ea700a8851023a1967083f22daa40f4c7a4366bf Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 16 Dec 2010 11:52:08 -0800 Subject: Upgrade V8 to 3.0.2 --- deps/v8/src/objects.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'deps/v8/src/objects.h') diff --git a/deps/v8/src/objects.h b/deps/v8/src/objects.h index c3958e2396..1827ab0114 100644 --- a/deps/v8/src/objects.h +++ b/deps/v8/src/objects.h @@ -3729,9 +3729,7 @@ enum MathFunctionId { kMathACos = 0xa, kMathATan = 0xb, kMathExp = 0xc, - kMathSqrt = 0xd, - kMathPow = 0xe, - kMathPowHalf = 0xf + kMathSqrt = 0xd }; @@ -4156,11 +4154,11 @@ class SharedFunctionInfo: public HeapObject { static const int kTryFullCodegen = 1; static const int kAllowLazyCompilation = 2; static const int kMathFunctionShift = 3; - static const int kMathFunctionMask = 0x1f; - static const int kLiveObjectsMayExist = 8; - static const int kCodeAgeShift = 9; + static const int kMathFunctionMask = 0xf; + static const int kLiveObjectsMayExist = 7; + static const int kCodeAgeShift = 8; static const int kCodeAgeMask = 0x7; - static const int kOptimizationDisabled = 12; + static const int kOptimizationDisabled = 11; DISALLOW_IMPLICIT_CONSTRUCTORS(SharedFunctionInfo); }; -- cgit v1.2.1