| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 0ec6feb2805e887b6f52a2bd5c8e4ca26be76f03..9289900675cf1cb89a4457e1f5a9dfe2b145fefb 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -7012,6 +7012,16 @@ Handle<Object> TypeFeedbackInfo::MegamorphicSentinel(Isolate* isolate) {
|
| }
|
|
|
|
|
| +Handle<Object> TypeFeedbackInfo::PremonomorphicSentinel(Isolate* isolate) {
|
| + return isolate->factory()->megamorphic_symbol();
|
| +}
|
| +
|
| +
|
| +Handle<Object> TypeFeedbackInfo::GenericSentinel(Isolate* isolate) {
|
| + return isolate->factory()->generic_symbol();
|
| +}
|
| +
|
| +
|
| Handle<Object> TypeFeedbackInfo::MonomorphicArraySentinel(Isolate* isolate,
|
| ElementsKind elements_kind) {
|
| return Handle<Object>(Smi::FromInt(static_cast<int>(elements_kind)), isolate);
|
|
|