| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index d370c32a1a4375dc25763d4e0e2d6b4da82bb323..ec5a8a617ee1e632322aadc76db8dba56cc40e0c 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -6184,6 +6184,8 @@ class SharedFunctionInfo: public HeapObject {
|
| // properties.
|
| DECL_ACCESSORS(inferred_name, String)
|
|
|
| + DECL_ACCESSORS(bailout_reason, String)
|
| +
|
| // The function's name if it is non-empty, otherwise the inferred name.
|
| String* DebugName();
|
|
|
| @@ -6379,8 +6381,8 @@ class SharedFunctionInfo: public HeapObject {
|
| static const int kScriptOffset = kFunctionDataOffset + kPointerSize;
|
| static const int kDebugInfoOffset = kScriptOffset + kPointerSize;
|
| static const int kInferredNameOffset = kDebugInfoOffset + kPointerSize;
|
| - static const int kInitialMapOffset =
|
| - kInferredNameOffset + kPointerSize;
|
| + static const int kBailoutReasonOffset = kInferredNameOffset + kPointerSize;
|
| + static const int kInitialMapOffset = kBailoutReasonOffset + kPointerSize;
|
| // ast_node_count is a Smi field. It could be grouped with another Smi field
|
| // into a PSEUDO_SMI_ACCESSORS pair (on x64), if one becomes available.
|
| static const int kAstNodeCountOffset =
|
|
|