| 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 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ | 1150 V(kLiveEditFrameDroppingIsNotSupportedOnARM64, \ |
| 1151 "LiveEdit frame dropping is not supported on arm64") \ | 1151 "LiveEdit frame dropping is not supported on arm64") \ |
| 1152 V(kLiveEditFrameDroppingIsNotSupportedOnArm, \ | 1152 V(kLiveEditFrameDroppingIsNotSupportedOnArm, \ |
| 1153 "LiveEdit frame dropping is not supported on arm") \ | 1153 "LiveEdit frame dropping is not supported on arm") \ |
| 1154 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \ | 1154 V(kLiveEditFrameDroppingIsNotSupportedOnMips, \ |
| 1155 "LiveEdit frame dropping is not supported on mips") \ | 1155 "LiveEdit frame dropping is not supported on mips") \ |
| 1156 V(kLiveEdit, "LiveEdit") \ | 1156 V(kLiveEdit, "LiveEdit") \ |
| 1157 V(kLookupVariableInCountOperation, \ | 1157 V(kLookupVariableInCountOperation, \ |
| 1158 "Lookup variable in count operation") \ | 1158 "Lookup variable in count operation") \ |
| 1159 V(kMapBecameDeprecated, "Map became deprecated") \ | 1159 V(kMapBecameDeprecated, "Map became deprecated") \ |
| 1160 V(kMapBecameUnstable, "Map became unstable") \ |
| 1160 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ | 1161 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ |
| 1161 V(kModuleDeclaration, "Module declaration") \ | 1162 V(kModuleDeclaration, "Module declaration") \ |
| 1162 V(kModuleLiteral, "Module literal") \ | 1163 V(kModuleLiteral, "Module literal") \ |
| 1163 V(kModulePath, "Module path") \ | 1164 V(kModulePath, "Module path") \ |
| 1164 V(kModuleStatement, "Module statement") \ | 1165 V(kModuleStatement, "Module statement") \ |
| 1165 V(kModuleVariable, "Module variable") \ | 1166 V(kModuleVariable, "Module variable") \ |
| 1166 V(kModuleUrl, "Module url") \ | 1167 V(kModuleUrl, "Module url") \ |
| 1167 V(kNativeFunctionLiteral, "Native function literal") \ | 1168 V(kNativeFunctionLiteral, "Native function literal") \ |
| 1168 V(kNoCasesLeft, "No cases left") \ | 1169 V(kNoCasesLeft, "No cases left") \ |
| 1169 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \ | 1170 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \ |
| (...skipping 9944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11114 } else { | 11115 } else { |
| 11115 value &= ~(1 << bit_position); | 11116 value &= ~(1 << bit_position); |
| 11116 } | 11117 } |
| 11117 return value; | 11118 return value; |
| 11118 } | 11119 } |
| 11119 }; | 11120 }; |
| 11120 | 11121 |
| 11121 } } // namespace v8::internal | 11122 } } // namespace v8::internal |
| 11122 | 11123 |
| 11123 #endif // V8_OBJECTS_H_ | 11124 #endif // V8_OBJECTS_H_ |
| OLD | NEW |