comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/ci/CiStackSlot.java @ 4295:1e3ecb08767d

Output of lifetime intervals for new register allocator
author Christian Wimmer <Christian.Wimmer@Oracle.com>
date Wed, 18 Jan 2012 15:04:03 -0800
parents a051fafaa4a9
children 438ab53efdd0
comparison
equal deleted inserted replaced
4294:600cbdce9805 4295:1e3ecb08767d
122 if (!addFrameSize) { 122 if (!addFrameSize) {
123 return "out:" + offset + kindSuffix(); 123 return "out:" + offset + kindSuffix();
124 } else if (offset >= 0) { 124 } else if (offset >= 0) {
125 return "in:" + offset + kindSuffix(); 125 return "in:" + offset + kindSuffix();
126 } else { 126 } else {
127 return "spill:" + (-offset) + kindSuffix(); 127 return "stack:" + (-offset) + kindSuffix();
128 } 128 }
129 } 129 }
130 130
131 /** 131 /**
132 * Gets this stack slot used to pass an argument from the perspective of a caller. 132 * Gets this stack slot used to pass an argument from the perspective of a caller.