| 60 | int64_t bytes_allocated() const { return bytes_allocated_; } |
| 61 | int64_t bytes_tracked() const { return bytes_tracked_; } |
| 62 | void set_bytes_tracked(int64_t bytes_tracked) { |
| 63 | DCHECK_LE(bytes_tracked, bytes_allocated_); |
| 64 | bytes_tracked_ = bytes_tracked; |
| 65 | } |
| 66 | |
| 67 | private: |
| 68 | /// Total bytes allocated for the compiled code. |