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 <iosfwd> | 8 #include <iosfwd> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 4443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4454 // Opaque data type for encapsulating code flags like kind, inline | 4454 // Opaque data type for encapsulating code flags like kind, inline |
4455 // cache state, and arguments count. | 4455 // cache state, and arguments count. |
4456 typedef uint32_t Flags; | 4456 typedef uint32_t Flags; |
4457 | 4457 |
4458 #define NON_IC_KIND_LIST(V) \ | 4458 #define NON_IC_KIND_LIST(V) \ |
4459 V(FUNCTION) \ | 4459 V(FUNCTION) \ |
4460 V(OPTIMIZED_FUNCTION) \ | 4460 V(OPTIMIZED_FUNCTION) \ |
4461 V(STUB) \ | 4461 V(STUB) \ |
4462 V(HANDLER) \ | 4462 V(HANDLER) \ |
4463 V(BUILTIN) \ | 4463 V(BUILTIN) \ |
4464 V(REGEXP) | 4464 V(REGEXP) \ |
| 4465 V(PLACEHOLDER) |
4465 | 4466 |
4466 #define IC_KIND_LIST(V) \ | 4467 #define IC_KIND_LIST(V) \ |
4467 V(LOAD_IC) \ | 4468 V(LOAD_IC) \ |
4468 V(KEYED_LOAD_IC) \ | 4469 V(KEYED_LOAD_IC) \ |
4469 V(CALL_IC) \ | 4470 V(CALL_IC) \ |
4470 V(STORE_IC) \ | 4471 V(STORE_IC) \ |
4471 V(KEYED_STORE_IC) \ | 4472 V(KEYED_STORE_IC) \ |
4472 V(BINARY_OP_IC) \ | 4473 V(BINARY_OP_IC) \ |
4473 V(COMPARE_IC) \ | 4474 V(COMPARE_IC) \ |
4474 V(COMPARE_NIL_IC) \ | 4475 V(COMPARE_NIL_IC) \ |
(...skipping 5820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10295 } else { | 10296 } else { |
10296 value &= ~(1 << bit_position); | 10297 value &= ~(1 << bit_position); |
10297 } | 10298 } |
10298 return value; | 10299 return value; |
10299 } | 10300 } |
10300 }; | 10301 }; |
10301 | 10302 |
10302 } } // namespace v8::internal | 10303 } } // namespace v8::internal |
10303 | 10304 |
10304 #endif // V8_OBJECTS_H_ | 10305 #endif // V8_OBJECTS_H_ |
OLD | NEW |