Searched refs:_max_spills (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.hpp73 int _max_spills; member in class:Compilation
137 int max_spills() const { return _max_spills; }
H A Dc1_Compilation.cpp222 _max_spills = allocator->max_spills();
491 , _max_spills(-1)
H A Dc1_LinearScan.hpp145 int _max_spills; // number of stack slots used for intervals allocated to memory member in class:LinearScan
404 int max_spills() const { return _max_spills; }
H A Dc1_LinearScan.cpp94 , _max_spills(0)
232 if ((_max_spills & 1) == 1) {
236 _unused_spill_slot = _max_spills;
237 _max_spills++;
239 spill_slot = _max_spills;
240 _max_spills += 2;
248 spill_slot = _max_spills;
249 _max_spills++;

Completed in 53 milliseconds