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

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: Address Ulan's comments. 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
« no previous file with comments | « src/arm64/macro-assembler-arm64-inl.h ('k') | test/cctest/test-assembler-arm64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 "Unexpected initial map for Array function (2)") \ 1283 "Unexpected initial map for Array function (2)") \
1284 V(kUnexpectedInitialMapForArrayFunction, \ 1284 V(kUnexpectedInitialMapForArrayFunction, \
1285 "Unexpected initial map for Array function") \ 1285 "Unexpected initial map for Array function") \
1286 V(kUnexpectedInitialMapForInternalArrayFunction, \ 1286 V(kUnexpectedInitialMapForInternalArrayFunction, \
1287 "Unexpected initial map for InternalArray function") \ 1287 "Unexpected initial map for InternalArray function") \
1288 V(kUnexpectedLevelAfterReturnFromApiCall, \ 1288 V(kUnexpectedLevelAfterReturnFromApiCall, \
1289 "Unexpected level after return from api call") \ 1289 "Unexpected level after return from api call") \
1290 V(kUnexpectedNegativeValue, "Unexpected negative value") \ 1290 V(kUnexpectedNegativeValue, "Unexpected negative value") \
1291 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ 1291 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \
1292 "Unexpected number of pre-allocated property fields") \ 1292 "Unexpected number of pre-allocated property fields") \
1293 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \
1293 V(kUnexpectedSmi, "Unexpected smi value") \ 1294 V(kUnexpectedSmi, "Unexpected smi value") \
1294 V(kUnexpectedStringFunction, "Unexpected String function") \ 1295 V(kUnexpectedStringFunction, "Unexpected String function") \
1295 V(kUnexpectedStringType, "Unexpected string type") \ 1296 V(kUnexpectedStringType, "Unexpected string type") \
1296 V(kUnexpectedStringWrapperInstanceSize, \ 1297 V(kUnexpectedStringWrapperInstanceSize, \
1297 "Unexpected string wrapper instance size") \ 1298 "Unexpected string wrapper instance size") \
1298 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ 1299 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \
1299 "Unexpected type for RegExp data, FixedArray expected") \ 1300 "Unexpected type for RegExp data, FixedArray expected") \
1300 V(kUnexpectedValue, "Unexpected value") \ 1301 V(kUnexpectedValue, "Unexpected value") \
1301 V(kUnexpectedUnusedPropertiesOfStringWrapper, \ 1302 V(kUnexpectedUnusedPropertiesOfStringWrapper, \
1302 "Unexpected unused properties of string wrapper") \ 1303 "Unexpected unused properties of string wrapper") \
(...skipping 9793 matching lines...) Expand 10 before | Expand all | Expand 10 after
11096 } else { 11097 } else {
11097 value &= ~(1 << bit_position); 11098 value &= ~(1 << bit_position);
11098 } 11099 }
11099 return value; 11100 return value;
11100 } 11101 }
11101 }; 11102 };
11102 11103
11103 } } // namespace v8::internal 11104 } } // namespace v8::internal
11104 11105
11105 #endif // V8_OBJECTS_H_ 11106 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/arm64/macro-assembler-arm64-inl.h ('k') | test/cctest/test-assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698