Home | History | Annotate | Download | only in ssa

Lines Matching refs:block

30     /** {@code non-null;} the block that contains this instance */
31 private final SsaBasicBlock block;
40 * @param block {@code non-null;} block containing this insn. Can
43 protected SsaInsn(RegisterSpec result, SsaBasicBlock block) {
44 if (block == null) {
45 throw new NullPointerException("block == null");
48 this.block = block;
56 * @param block {@code non-null;} owning block
59 public static SsaInsn makeFromRop(Insn insn, SsaBasicBlock block) {
60 return new NormalSsaInsn(insn, block);
103 * Gets the block to which this insn instance belongs.
105 * @return owning block
108 return block;
160 block.getParent().updateOneDefinition(this, oldResult);