Chromium Code Reviews| Index: src/heap/heap.h |
| diff --git a/src/heap/heap.h b/src/heap/heap.h |
| index 5d01e2a401999a24c2b5e08f44aa421b7e0d484a..640366191bca2b43fc1b5e2767b6501c9a12dbd4 100644 |
| --- a/src/heap/heap.h |
| +++ b/src/heap/heap.h |
| @@ -959,7 +959,7 @@ class Heap { |
| inline uint32_t HashSeed(); |
| - inline Smi* NextScriptId(); |
| + inline int NextScriptId(); |
| inline void SetArgumentsAdaptorDeoptPCOffset(int pc_offset); |
| inline void SetConstructStubDeoptPCOffset(int pc_offset); |
| @@ -2304,6 +2304,9 @@ class Heap { |
| int allocation_sites_scratchpad_length_; |
| + // Handling of script id generation is in Heap::NextScriptId(). |
| + int last_script_id_; |
|
Michael Starzinger
2015/09/28 12:01:36
As discussed offline: Let's keep that one part of
|
| + |
| char trace_ring_buffer_[kTraceRingBufferSize]; |
| // If it's not full then the data is from 0 to ring_buffer_end_. If it's |
| // full then the data is from ring_buffer_end_ to the end of the buffer and |