| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 78578cc88427b36b08d8e1b2f97a237fa7178b55..809671a88b0148406b84f1ba1ac218ce606bd51f 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -3508,7 +3508,6 @@ ACCESSORS(SharedFunctionInfo, inferred_name, String, kInferredNameOffset)
|
| ACCESSORS(SharedFunctionInfo, this_property_assignments, Object,
|
| kThisPropertyAssignmentsOffset)
|
|
|
| -SMI_ACCESSORS(SharedFunctionInfo, profiler_ticks, kProfilerTicksOffset)
|
|
|
| BOOL_ACCESSORS(FunctionTemplateInfo, flag, hidden_prototype,
|
| kHiddenPrototypeBit)
|
| @@ -3558,6 +3557,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, profiler_ticks, kProfilerTicksOffset)
|
| +SMI_ACCESSORS(SharedFunctionInfo, ic_age, kICAgeOffset)
|
| #else
|
|
|
| #define PSEUDO_SMI_ACCESSORS_LO(holder, name, offset) \
|
| @@ -3611,6 +3612,11 @@ 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,
|
| + profiler_ticks,
|
| + kProfilerTicksOffset)
|
| +PSEUDO_SMI_ACCESSORS_HI(SharedFunctionInfo, ic_age, kICAgeOffset)
|
| #endif
|
|
|
|
|
|
|