| 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 "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
| 10 #include "src/builtins.h" | 10 #include "src/builtins.h" |
| (...skipping 1309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 V(kUnexpectedStringFunction, "Unexpected String function") \ | 1320 V(kUnexpectedStringFunction, "Unexpected String function") \ |
| 1321 V(kUnexpectedStringType, "Unexpected string type") \ | 1321 V(kUnexpectedStringType, "Unexpected string type") \ |
| 1322 V(kUnexpectedStringWrapperInstanceSize, \ | 1322 V(kUnexpectedStringWrapperInstanceSize, \ |
| 1323 "Unexpected string wrapper instance size") \ | 1323 "Unexpected string wrapper instance size") \ |
| 1324 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ | 1324 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ |
| 1325 "Unexpected type for RegExp data, FixedArray expected") \ | 1325 "Unexpected type for RegExp data, FixedArray expected") \ |
| 1326 V(kUnexpectedValue, "Unexpected value") \ | 1326 V(kUnexpectedValue, "Unexpected value") \ |
| 1327 V(kUnexpectedUnusedPropertiesOfStringWrapper, \ | 1327 V(kUnexpectedUnusedPropertiesOfStringWrapper, \ |
| 1328 "Unexpected unused properties of string wrapper") \ | 1328 "Unexpected unused properties of string wrapper") \ |
| 1329 V(kUnimplemented, "unimplemented") \ | 1329 V(kUnimplemented, "unimplemented") \ |
| 1330 V(kUninitializedKSmiConstantRegister, "Uninitialized kSmiConstantRegister") \ | |
| 1331 V(kUnknown, "Unknown") \ | 1330 V(kUnknown, "Unknown") \ |
| 1332 V(kUnsupportedConstCompoundAssignment, \ | 1331 V(kUnsupportedConstCompoundAssignment, \ |
| 1333 "Unsupported const compound assignment") \ | 1332 "Unsupported const compound assignment") \ |
| 1334 V(kUnsupportedCountOperationWithConst, \ | 1333 V(kUnsupportedCountOperationWithConst, \ |
| 1335 "Unsupported count operation with const") \ | 1334 "Unsupported count operation with const") \ |
| 1336 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ | 1335 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ |
| 1337 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ | 1336 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ |
| 1338 V(kUnsupportedLookupSlotInDeclaration, \ | 1337 V(kUnsupportedLookupSlotInDeclaration, \ |
| 1339 "Unsupported lookup slot in declaration") \ | 1338 "Unsupported lookup slot in declaration") \ |
| 1340 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ | 1339 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ |
| (...skipping 9919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11260 } else { | 11259 } else { |
| 11261 value &= ~(1 << bit_position); | 11260 value &= ~(1 << bit_position); |
| 11262 } | 11261 } |
| 11263 return value; | 11262 return value; |
| 11264 } | 11263 } |
| 11265 }; | 11264 }; |
| 11266 | 11265 |
| 11267 } } // namespace v8::internal | 11266 } } // namespace v8::internal |
| 11268 | 11267 |
| 11269 #endif // V8_OBJECTS_H_ | 11268 #endif // V8_OBJECTS_H_ |
| OLD | NEW |