comparison graal/GraalCompiler/src/com/sun/c1x/lir/LIRBlock.java @ 2805:c3f64b66fc78

Towards removing the next pointer from Constant and ArithmeticOp
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Fri, 27 May 2011 19:57:56 +0200
parents 2af109bec0c0
children 775c31be565c
comparison
equal deleted inserted replaced
2804:095162a84dcc 2805:c3f64b66fc78
275 } 275 }
276 276
277 public FrameState lastState() { 277 public FrameState lastState() {
278 return lastState; 278 return lastState;
279 } 279 }
280
281 private Node first;
282 private Node last;
283
284 public Node firstInstruction() {
285 return first;
286 }
287
288
289 public Node lastInstruction() {
290 return last;
291 }
292
293 public void setFirstInstruction(Node n) {
294 first = n;
295 }
296
297
298 public void setLastInstruction(Node n) {
299 last = n;
300 }
280 } 301 }