Chromium Code Reviews| Index: src/utils.h |
| diff --git a/src/utils.h b/src/utils.h |
| index e03f96f6e5d3a7bb2b1c527810a180333c4a26b8..7ce5d5e8c73d2e707322820b3c18053e88729891 100644 |
| --- a/src/utils.h |
| +++ b/src/utils.h |
| @@ -1015,6 +1015,7 @@ class BailoutId { |
| static BailoutId FunctionEntry() { return BailoutId(kFunctionEntryId); } |
| static BailoutId Declarations() { return BailoutId(kDeclarationsId); } |
| static BailoutId FirstUsable() { return BailoutId(kFirstUsableId); } |
| + static BailoutId StubEntry() { return BailoutId(kStubEntryId); } |
| bool IsNone() const { return id_ == kNoneId; } |
| bool operator==(const BailoutId& other) const { return id_ == other.id_; } |
| @@ -1033,6 +1034,9 @@ class BailoutId { |
| // Ever FunctionState starts with this id. |
| static const int kFirstUsableId = 4; |
|
Jakob Kummerow
2012/11/19 12:36:00
every
danno
2012/11/26 17:16:18
Done.
|
| + // Ever compiled stub starts with this id. |
| + static const int kStubEntryId = 5; |
|
Jakob Kummerow
2012/11/19 12:36:00
every
danno
2012/11/26 17:16:18
Done.
|
| + |
| int id_; |
| }; |