| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index ee17363acad88af8f2573259d1b2749c24b2f835..3a8d052eb31f0df484be597106eb64b83bb84894 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -3571,6 +3571,8 @@ SMI_ACCESSORS(SharedFunctionInfo, this_property_assignments_count,
|
| SMI_ACCESSORS(SharedFunctionInfo, opt_count, kOptCountOffset)
|
| SMI_ACCESSORS(SharedFunctionInfo, ast_node_count, kAstNodeCountOffset)
|
| SMI_ACCESSORS(SharedFunctionInfo, deopt_counter, kDeoptCounterOffset)
|
| +SMI_ACCESSORS(SharedFunctionInfo, ic_total_count, kIcTotalCountOffset)
|
| +SMI_ACCESSORS(SharedFunctionInfo, ic_typeinfo_count, kIcTypeInfoCountOffset)
|
| #else
|
|
|
| #define PSEUDO_SMI_ACCESSORS_LO(holder, name, offset) \
|
| @@ -3624,6 +3626,10 @@ PSEUDO_SMI_ACCESSORS_HI(SharedFunctionInfo, opt_count, kOptCountOffset)
|
|
|
| PSEUDO_SMI_ACCESSORS_LO(SharedFunctionInfo, ast_node_count, kAstNodeCountOffset)
|
| PSEUDO_SMI_ACCESSORS_HI(SharedFunctionInfo, deopt_counter, kDeoptCounterOffset)
|
| +
|
| +PSEUDO_SMI_ACCESSORS_LO(SharedFunctionInfo, ic_total_count, kIcTotalCountOffset)
|
| +PSEUDO_SMI_ACCESSORS_HI(SharedFunctionInfo, ic_typeinfo_count,
|
| + kIcTypeInfoCountOffset)
|
| #endif
|
|
|
|
|
|
|