| Index: src/full-codegen.h
|
| diff --git a/src/full-codegen.h b/src/full-codegen.h
|
| index af63aedfbff2e4e6dafc0485b37191d8862a6104..43d57d33d204ab3a3f9c3877a830e8bf1c689b28 100644
|
| --- a/src/full-codegen.h
|
| +++ b/src/full-codegen.h
|
| @@ -100,6 +100,7 @@ class FullCodeGenerator: public AstVisitor {
|
| ? info->function()->ast_node_count() : 0,
|
| info->zone()),
|
| ic_total_count_(0),
|
| + profiling_budget_(),
|
| zone_(info->zone()) {
|
| Initialize();
|
| }
|
| @@ -695,6 +696,7 @@ class FullCodeGenerator: public AstVisitor {
|
| void PopulateDeoptimizationData(Handle<Code> code);
|
| void PopulateTypeFeedbackInfo(Handle<Code> code);
|
| void PopulateTypeFeedbackCells(Handle<Code> code);
|
| + void SetProfilingBudgetCell(Handle<Code> code);
|
|
|
| Handle<FixedArray> handler_table() { return handler_table_; }
|
|
|
| @@ -907,7 +909,7 @@ class FullCodeGenerator: public AstVisitor {
|
| ZoneList<TypeFeedbackCellEntry> type_feedback_cells_;
|
| int ic_total_count_;
|
| Handle<FixedArray> handler_table_;
|
| - Handle<Cell> profiling_counter_;
|
| + Handle<Cell> profiling_budget_;
|
| bool generate_debug_code_;
|
| Zone* zone_;
|
|
|
|
|