| 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 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 V(kInvalidMinLength, "Invalid min_length") \ | 1150 V(kInvalidMinLength, "Invalid min_length") \ |
| 1151 V(kJSGlobalObjectNativeContextShouldBeANativeContext, \ | 1151 V(kJSGlobalObjectNativeContextShouldBeANativeContext, \ |
| 1152 "JSGlobalObject::native_context should be a native context") \ | 1152 "JSGlobalObject::native_context should be a native context") \ |
| 1153 V(kJSGlobalProxyContextShouldNotBeNull, \ | 1153 V(kJSGlobalProxyContextShouldNotBeNull, \ |
| 1154 "JSGlobalProxy::context() should not be null") \ | 1154 "JSGlobalProxy::context() should not be null") \ |
| 1155 V(kJSObjectWithFastElementsMapHasSlowElements, \ | 1155 V(kJSObjectWithFastElementsMapHasSlowElements, \ |
| 1156 "JSObject with fast elements map has slow elements") \ | 1156 "JSObject with fast elements map has slow elements") \ |
| 1157 V(kLetBindingReInitialization, "Let binding re-initialization") \ | 1157 V(kLetBindingReInitialization, "Let binding re-initialization") \ |
| 1158 V(kLhsHasBeenClobbered, "lhs has been clobbered") \ | 1158 V(kLhsHasBeenClobbered, "lhs has been clobbered") \ |
| 1159 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ | 1159 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ |
| 1160 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ | |
| 1161 "LiveEdit frame dropping is not supported on arm64") \ | |
| 1162 V(kLiveEdit, "LiveEdit") \ | 1160 V(kLiveEdit, "LiveEdit") \ |
| 1163 V(kLookupVariableInCountOperation, \ | 1161 V(kLookupVariableInCountOperation, \ |
| 1164 "Lookup variable in count operation") \ | 1162 "Lookup variable in count operation") \ |
| 1165 V(kMapBecameDeprecated, "Map became deprecated") \ | 1163 V(kMapBecameDeprecated, "Map became deprecated") \ |
| 1166 V(kMapBecameUnstable, "Map became unstable") \ | 1164 V(kMapBecameUnstable, "Map became unstable") \ |
| 1167 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ | 1165 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ |
| 1168 V(kModuleDeclaration, "Module declaration") \ | 1166 V(kModuleDeclaration, "Module declaration") \ |
| 1169 V(kModuleLiteral, "Module literal") \ | 1167 V(kModuleLiteral, "Module literal") \ |
| 1170 V(kModulePath, "Module path") \ | 1168 V(kModulePath, "Module path") \ |
| 1171 V(kModuleStatement, "Module statement") \ | 1169 V(kModuleStatement, "Module statement") \ |
| (...skipping 9974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11146 } else { | 11144 } else { |
| 11147 value &= ~(1 << bit_position); | 11145 value &= ~(1 << bit_position); |
| 11148 } | 11146 } |
| 11149 return value; | 11147 return value; |
| 11150 } | 11148 } |
| 11151 }; | 11149 }; |
| 11152 | 11150 |
| 11153 } } // namespace v8::internal | 11151 } } // namespace v8::internal |
| 11154 | 11152 |
| 11155 #endif // V8_OBJECTS_H_ | 11153 #endif // V8_OBJECTS_H_ |
| OLD | NEW |