comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/cfg/Block.java @ 7353:b5280041f59e

Experiment with soft alignment for branch targets.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 13 Jan 2013 19:32:16 +0100
parents 2e96dc4eb8e2
children 4c6e577d0c01
comparison
equal deleted inserted replaced
7352:00e3c2e4e43c 7353:b5280041f59e
43 protected List<Block> dominated; 43 protected List<Block> dominated;
44 protected Block postdominator; 44 protected Block postdominator;
45 45
46 // Fields that still need to be worked on, try to remove them later. 46 // Fields that still need to be worked on, try to remove them later.
47 public boolean align; 47 public boolean align;
48 public boolean softAlign;
48 public int linearScanNumber; 49 public int linearScanNumber;
49 50
50 protected Block() { 51 protected Block() {
51 id = ControlFlowGraph.BLOCK_ID_INITIAL; 52 id = ControlFlowGraph.BLOCK_ID_INITIAL;
52 } 53 }