| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 STORE_AND_GROW_TRANSITION_SMI_TO_DOUBLE, | 159 STORE_AND_GROW_TRANSITION_SMI_TO_DOUBLE, |
| 160 STORE_AND_GROW_TRANSITION_DOUBLE_TO_OBJECT, | 160 STORE_AND_GROW_TRANSITION_DOUBLE_TO_OBJECT, |
| 161 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_OBJECT, | 161 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_OBJECT, |
| 162 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_DOUBLE, | 162 STORE_AND_GROW_TRANSITION_HOLEY_SMI_TO_DOUBLE, |
| 163 STORE_AND_GROW_TRANSITION_HOLEY_DOUBLE_TO_OBJECT, | 163 STORE_AND_GROW_TRANSITION_HOLEY_DOUBLE_TO_OBJECT, |
| 164 STORE_NO_TRANSITION_IGNORE_OUT_OF_BOUNDS, | 164 STORE_NO_TRANSITION_IGNORE_OUT_OF_BOUNDS, |
| 165 STORE_NO_TRANSITION_HANDLE_COW | 165 STORE_NO_TRANSITION_HANDLE_COW |
| 166 }; | 166 }; |
| 167 | 167 |
| 168 | 168 |
| 169 enum TypeofState { |
| 170 INSIDE_TYPEOF, |
| 171 NOT_INSIDE_TYPEOF |
| 172 }; |
| 173 |
| 174 |
| 169 enum ContextualMode { | 175 enum ContextualMode { |
| 170 NOT_CONTEXTUAL, | 176 NOT_CONTEXTUAL, |
| 171 CONTEXTUAL | 177 CONTEXTUAL |
| 172 }; | 178 }; |
| 173 | 179 |
| 174 | 180 |
| 175 enum MutableMode { | 181 enum MutableMode { |
| 176 MUTABLE, | 182 MUTABLE, |
| 177 IMMUTABLE | 183 IMMUTABLE |
| 178 }; | 184 }; |
| (...skipping 11043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11222 } else { | 11228 } else { |
| 11223 value &= ~(1 << bit_position); | 11229 value &= ~(1 << bit_position); |
| 11224 } | 11230 } |
| 11225 return value; | 11231 return value; |
| 11226 } | 11232 } |
| 11227 }; | 11233 }; |
| 11228 | 11234 |
| 11229 } } // namespace v8::internal | 11235 } } // namespace v8::internal |
| 11230 | 11236 |
| 11231 #endif // V8_OBJECTS_H_ | 11237 #endif // V8_OBJECTS_H_ |
| OLD | NEW |