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 1148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1159 V(kMapBecameDeprecated, "Map became deprecated") \ | 1159 V(kMapBecameDeprecated, "Map became deprecated") \ |
1160 V(kMapBecameUnstable, "Map became unstable") \ | 1160 V(kMapBecameUnstable, "Map became unstable") \ |
1161 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ | 1161 V(kMapIsNoLongerInEax, "Map is no longer in eax") \ |
1162 V(kModuleDeclaration, "Module declaration") \ | 1162 V(kModuleDeclaration, "Module declaration") \ |
1163 V(kModuleLiteral, "Module literal") \ | 1163 V(kModuleLiteral, "Module literal") \ |
1164 V(kModulePath, "Module path") \ | 1164 V(kModulePath, "Module path") \ |
1165 V(kModuleStatement, "Module statement") \ | 1165 V(kModuleStatement, "Module statement") \ |
1166 V(kModuleVariable, "Module variable") \ | 1166 V(kModuleVariable, "Module variable") \ |
1167 V(kModuleUrl, "Module url") \ | 1167 V(kModuleUrl, "Module url") \ |
1168 V(kNativeFunctionLiteral, "Native function literal") \ | 1168 V(kNativeFunctionLiteral, "Native function literal") \ |
| 1169 V(kNeedSmiLiteral, "Need a Smi literal here") \ |
1169 V(kNoCasesLeft, "No cases left") \ | 1170 V(kNoCasesLeft, "No cases left") \ |
1170 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \ | 1171 V(kNoEmptyArraysHereInEmitFastAsciiArrayJoin, \ |
1171 "No empty arrays here in EmitFastAsciiArrayJoin") \ | 1172 "No empty arrays here in EmitFastAsciiArrayJoin") \ |
1172 V(kNonInitializerAssignmentToConst, \ | 1173 V(kNonInitializerAssignmentToConst, \ |
1173 "Non-initializer assignment to const") \ | 1174 "Non-initializer assignment to const") \ |
1174 V(kNonSmiIndex, "Non-smi index") \ | 1175 V(kNonSmiIndex, "Non-smi index") \ |
1175 V(kNonSmiKeyInArrayLiteral, "Non-smi key in array literal") \ | 1176 V(kNonSmiKeyInArrayLiteral, "Non-smi key in array literal") \ |
1176 V(kNonSmiValue, "Non-smi value") \ | 1177 V(kNonSmiValue, "Non-smi value") \ |
1177 V(kNonObject, "Non-object value") \ | 1178 V(kNonObject, "Non-object value") \ |
1178 V(kNotEnoughVirtualRegistersForValues, \ | 1179 V(kNotEnoughVirtualRegistersForValues, \ |
(...skipping 9937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11116 } else { | 11117 } else { |
11117 value &= ~(1 << bit_position); | 11118 value &= ~(1 << bit_position); |
11118 } | 11119 } |
11119 return value; | 11120 return value; |
11120 } | 11121 } |
11121 }; | 11122 }; |
11122 | 11123 |
11123 } } // namespace v8::internal | 11124 } } // namespace v8::internal |
11124 | 11125 |
11125 #endif // V8_OBJECTS_H_ | 11126 #endif // V8_OBJECTS_H_ |
OLD | NEW |