| 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 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1145 "JSGlobalObject::native_context should be a native context") \ | 1145 "JSGlobalObject::native_context should be a native context") \ |
| 1146 V(kJSGlobalProxyContextShouldNotBeNull, \ | 1146 V(kJSGlobalProxyContextShouldNotBeNull, \ |
| 1147 "JSGlobalProxy::context() should not be null") \ | 1147 "JSGlobalProxy::context() should not be null") \ |
| 1148 V(kJSObjectWithFastElementsMapHasSlowElements, \ | 1148 V(kJSObjectWithFastElementsMapHasSlowElements, \ |
| 1149 "JSObject with fast elements map has slow elements") \ | 1149 "JSObject with fast elements map has slow elements") \ |
| 1150 V(kLetBindingReInitialization, "Let binding re-initialization") \ | 1150 V(kLetBindingReInitialization, "Let binding re-initialization") \ |
| 1151 V(kLhsHasBeenClobbered, "lhs has been clobbered") \ | 1151 V(kLhsHasBeenClobbered, "lhs has been clobbered") \ |
| 1152 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ | 1152 V(kLiveBytesCountOverflowChunkSize, "Live Bytes Count overflow chunk size") \ |
| 1153 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ | 1153 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ |
| 1154 "LiveEdit frame dropping is not supported on arm64") \ | 1154 "LiveEdit frame dropping is not supported on arm64") \ |
| 1155 V(kLiveEditFrameDroppingIsNotSupportedOnArm, \ | |
| 1156 "LiveEdit frame dropping is not supported on arm") \ | |
| 1157 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \ | 1155 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \ |
| 1158 "LiveEdit frame dropping is not supported on mips") \ | 1156 "LiveEdit frame dropping is not supported on mips") \ |
| 1159 V(kLiveEdit, "LiveEdit") \ | 1157 V(kLiveEdit, "LiveEdit") \ |
| 1160 V(kLookupVariableInCountOperation, \ | 1158 V(kLookupVariableInCountOperation, \ |
| 1161 "Lookup variable in count operation") \ | 1159 "Lookup variable in count operation") \ |
| 1162 V(kMapBecameDeprecated, "Map became deprecated") \ | 1160 V(kMapBecameDeprecated, "Map became deprecated") \ |
| 1163 V(kMapBecameUnstable, "Map became unstable") \ | 1161 V(kMapBecameUnstable, "Map became unstable") \ |
| 1164 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ | 1162 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ |
| 1165 V(kModuleDeclaration, "Module declaration") \ | 1163 V(kModuleDeclaration, "Module declaration") \ |
| 1166 V(kModuleLiteral, "Module literal") \ | 1164 V(kModuleLiteral, "Module literal") \ |
| (...skipping 10081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11248 } else { | 11246 } else { |
| 11249 value &= ~(1 << bit_position); | 11247 value &= ~(1 << bit_position); |
| 11250 } | 11248 } |
| 11251 return value; | 11249 return value; |
| 11252 } | 11250 } |
| 11253 }; | 11251 }; |
| 11254 | 11252 |
| 11255 } } // namespace v8::internal | 11253 } } // namespace v8::internal |
| 11256 | 11254 |
| 11257 #endif // V8_OBJECTS_H_ | 11255 #endif // V8_OBJECTS_H_ |
| OLD | NEW |