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

Side by Side Diff: src/objects.h

Issue 255343004: ARM64: Use default-NaN mode to canonicalize NaNs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Reset FPCR for cctest/test-assembler-a64.cc. Created 6 years, 7 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include "allocation.h" 8 #include "allocation.h"
9 #include "assert-scope.h" 9 #include "assert-scope.h"
10 #include "builtins.h" 10 #include "builtins.h"
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1326 "Unexpected initial map for Array function (2)") \ 1326 "Unexpected initial map for Array function (2)") \
1327 V(kUnexpectedInitialMapForArrayFunction, \ 1327 V(kUnexpectedInitialMapForArrayFunction, \
1328 "Unexpected initial map for Array function") \ 1328 "Unexpected initial map for Array function") \
1329 V(kUnexpectedInitialMapForInternalArrayFunction, \ 1329 V(kUnexpectedInitialMapForInternalArrayFunction, \
1330 "Unexpected initial map for InternalArray function") \ 1330 "Unexpected initial map for InternalArray function") \
1331 V(kUnexpectedLevelAfterReturnFromApiCall, \ 1331 V(kUnexpectedLevelAfterReturnFromApiCall, \
1332 "Unexpected level after return from api call") \ 1332 "Unexpected level after return from api call") \
1333 V(kUnexpectedNegativeValue, "Unexpected negative value") \ 1333 V(kUnexpectedNegativeValue, "Unexpected negative value") \
1334 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ 1334 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \
1335 "Unexpected number of pre-allocated property fields") \ 1335 "Unexpected number of pre-allocated property fields") \
1336 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \
1336 V(kUnexpectedSmi, "Unexpected smi value") \ 1337 V(kUnexpectedSmi, "Unexpected smi value") \
1337 V(kUnexpectedStringFunction, "Unexpected String function") \ 1338 V(kUnexpectedStringFunction, "Unexpected String function") \
1338 V(kUnexpectedStringType, "Unexpected string type") \ 1339 V(kUnexpectedStringType, "Unexpected string type") \
1339 V(kUnexpectedStringWrapperInstanceSize, \ 1340 V(kUnexpectedStringWrapperInstanceSize, \
1340 "Unexpected string wrapper instance size") \ 1341 "Unexpected string wrapper instance size") \
1341 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ 1342 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \
1342 "Unexpected type for RegExp data, FixedArray expected") \ 1343 "Unexpected type for RegExp data, FixedArray expected") \
1343 V(kUnexpectedValue, "Unexpected value") \ 1344 V(kUnexpectedValue, "Unexpected value") \
1344 V(kUnexpectedUnusedPropertiesOfStringWrapper, \ 1345 V(kUnexpectedUnusedPropertiesOfStringWrapper, \
1345 "Unexpected unused properties of string wrapper") \ 1346 "Unexpected unused properties of string wrapper") \
(...skipping 9824 matching lines...) Expand 10 before | Expand all | Expand 10 after
11170 } else { 11171 } else {
11171 value &= ~(1 << bit_position); 11172 value &= ~(1 << bit_position);
11172 } 11173 }
11173 return value; 11174 return value;
11174 } 11175 }
11175 }; 11176 };
11176 11177
11177 } } // namespace v8::internal 11178 } } // namespace v8::internal
11178 11179
11179 #endif // V8_OBJECTS_H_ 11180 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698