Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 3f229a85bf308af1ba5cdb9d6b1d8847c49f0968..ba9875a75985864b496af3cae7e8b9f95dcf31e5 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -5122,11 +5122,15 @@ class Code: public HeapObject { |
#define DECLARE_CODE_AGE_ENUM(X) k##X##CodeAge, |
enum Age { |
+ kNotExecutedCodeAge = -2, |
+ kExecutedOnceCodeAge = -1, |
kNoAge = 0, |
CODE_AGE_LIST(DECLARE_CODE_AGE_ENUM) |
kAfterLastCodeAge, |
kLastCodeAge = kAfterLastCodeAge - 1, |
- kCodeAgeCount = kAfterLastCodeAge - 1 |
+ kCodeAgeCount = kAfterLastCodeAge - 1, |
+ kIsOldCodeAge = kSexagenarianCodeAge, |
+ kPreAgedCodeAge = kIsOldCodeAge - 1 |
}; |
#undef DECLARE_CODE_AGE_ENUM |
@@ -5135,10 +5139,14 @@ class Code: public HeapObject { |
// relatively safe to flush this code object and replace it with the lazy |
// compilation stub. |
static void MakeCodeAgeSequenceYoung(byte* sequence, Isolate* isolate); |
+ static void MarkCodeAsExecuted(byte* sequence, Isolate* isolate); |
void MakeOlder(MarkingParity); |
static bool IsYoungSequence(byte* sequence); |
bool IsOld(); |
- int GetAge(); |
+ Age GetAge(); |
+ static inline Code* GetPreAgedCodeAgeStub(Isolate* isolate) { |
+ return GetCodeAgeStub(isolate, kNotExecutedCodeAge, NO_MARKING_PARITY); |
+ } |
void PrintDeoptLocation(int bailout_id); |
bool CanDeoptAt(Address pc); |