| OLD | NEW |
| (Empty) |
| 1 --- src/graph-codegen.h (revision 757) | |
| 2 +++ src/graph-codegen.h (working copy) | |
| 3 @@ -254,6 +254,7 @@ | |
| 4 | |
| 5 // Support for recording safepoint information. | |
| 6 void RecordSafepoint(); | |
| 7 + unsigned RecordBailout(AstNode* node); | |
| 8 | |
| 9 // Emits the safepoint table and returns the pc offset where the | |
| 10 // table starts after the instructions. | |
| 11 @@ -286,6 +287,7 @@ | |
| 12 | |
| 13 // Safe point data structures. | |
| 14 ZoneList<unsigned> safepoint_pc_offsets_; | |
| 15 + ZoneList<unsigned> safepoint_bailout_ids_; | |
| 16 ZoneList<ZoneList<int>*> safepoint_span_indexes_; | |
| 17 | |
| 18 // Current and next basic block. | |
| OLD | NEW |