comparison graal/com.oracle.max.cri/src/com/oracle/max/cri/xir/XirTemplate.java @ 5774:a1db0ea58b53

Removed left over Ci* prefixed identifiers
author Doug Simon <doug.simon@oracle.com>
date Thu, 05 Jul 2012 21:39:22 +0200
parents 744dade427b8
children
comparison
equal deleted inserted replaced
5773:772118da9f68 5774:a1db0ea58b53
23 package com.oracle.max.cri.xir; 23 package com.oracle.max.cri.xir;
24 24
25 import java.io.*; 25 import java.io.*;
26 import java.util.*; 26 import java.util.*;
27 27
28 import com.oracle.max.cri.xir.CiXirAssembler.*; 28 import com.oracle.max.cri.xir.XirAssembler.*;
29 29
30 /** 30 /**
31 * Represents a completed template of XIR code that has been first assembled by 31 * Represents a completed template of XIR code that has been first assembled by
32 * the runtime, and then verified and preprocessed by the compiler. An {@code XirTemplate} 32 * the runtime, and then verified and preprocessed by the compiler. An {@code XirTemplate}
33 * instance is immutable. 33 * instance is immutable.
69 public final XirOperand resultOperand; 69 public final XirOperand resultOperand;
70 70
71 /** 71 /**
72 * The sequence of instructions for the fast (inline) path. 72 * The sequence of instructions for the fast (inline) path.
73 */ 73 */
74 public final CiXirAssembler.XirInstruction[] fastPath; 74 public final XirAssembler.XirInstruction[] fastPath;
75 75
76 /** 76 /**
77 * The sequence of instructions for the slow (out of line) path. 77 * The sequence of instructions for the slow (out of line) path.
78 */ 78 */
79 public final CiXirAssembler.XirInstruction[] slowPath; 79 public final XirAssembler.XirInstruction[] slowPath;
80 80
81 /** 81 /**
82 * Labels used in control transfers. 82 * Labels used in control transfers.
83 */ 83 */
84 public final XirLabel[] labels; 84 public final XirLabel[] labels;
128 128
129 public XirTemplate(String name, 129 public XirTemplate(String name,
130 int variableCount, 130 int variableCount,
131 boolean allocateResultOperand, 131 boolean allocateResultOperand,
132 XirOperand resultOperand, 132 XirOperand resultOperand,
133 CiXirAssembler.XirInstruction[] fastPath, 133 XirAssembler.XirInstruction[] fastPath,
134 CiXirAssembler.XirInstruction[] slowPath, 134 XirAssembler.XirInstruction[] slowPath,
135 XirLabel[] labels, 135 XirLabel[] labels,
136 XirParameter[] parameters, 136 XirParameter[] parameters,
137 XirTemp[] temps, 137 XirTemp[] temps,
138 XirConstant[] constantValues, 138 XirConstant[] constantValues,
139 int flags, 139 int flags,