| 32 | namespace cpu { |
| 33 | float getMemoryPressure() { return memoryManager().getMemoryPressure(); } |
| 34 | float getMemoryPressureThreshold() { |
| 35 | return memoryManager().getMemoryPressureThreshold(); |
| 36 | } |
| 37 | |
| 38 | bool jitTreeExceedsMemoryPressure(size_t bytes) { |
| 39 | return memoryManager().jitTreeExceedsMemoryPressure(bytes); |
no test coverage detected