OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |