|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jikesrvm.compilers.opt.ir.InstructionFormat org.jikesrvm.compilers.opt.ir.InlineGuard
public final class InlineGuard
The InlineGuard InstructionFormat class.
The header comment for Instruction
contains
an explanation of the role of InstructionFormats in the
opt compiler's IR.
Field Summary |
---|
Constructor Summary | |
---|---|
InlineGuard()
|
Method Summary | |
---|---|
static boolean |
conforms(Instruction i)
InstructionFormat identification method for InlineGuard. |
static boolean |
conforms(Operator o)
InstructionFormat identification method for InlineGuard. |
static Instruction |
create(Operator o,
Operand Value,
Operand Guard,
Operand Goal,
BranchOperand Target,
BranchProfileOperand BranchProfile)
Create an instruction of the InlineGuard instruction format. |
static BranchProfileOperand |
getBranchProfile(Instruction i)
Get the operand called BranchProfile from the argument instruction. |
static BranchProfileOperand |
getClearBranchProfile(Instruction i)
Get the operand called BranchProfile from the argument instruction clearing its instruction pointer. |
static Operand |
getClearGoal(Instruction i)
Get the operand called Goal from the argument instruction clearing its instruction pointer. |
static Operand |
getClearGuard(Instruction i)
Get the operand called Guard from the argument instruction clearing its instruction pointer. |
static BranchOperand |
getClearTarget(Instruction i)
Get the operand called Target from the argument instruction clearing its instruction pointer. |
static Operand |
getClearValue(Instruction i)
Get the operand called Value from the argument instruction clearing its instruction pointer. |
static Operand |
getGoal(Instruction i)
Get the operand called Goal from the argument instruction. |
static Operand |
getGuard(Instruction i)
Get the operand called Guard from the argument instruction. |
static BranchOperand |
getTarget(Instruction i)
Get the operand called Target from the argument instruction. |
static Operand |
getValue(Instruction i)
Get the operand called Value from the argument instruction. |
static boolean |
hasBranchProfile(Instruction i)
Does the argument instruction have a non-null operand named BranchProfile? |
static boolean |
hasGoal(Instruction i)
Does the argument instruction have a non-null operand named Goal? |
static boolean |
hasGuard(Instruction i)
Does the argument instruction have a non-null operand named Guard? |
static boolean |
hasTarget(Instruction i)
Does the argument instruction have a non-null operand named Target? |
static boolean |
hasValue(Instruction i)
Does the argument instruction have a non-null operand named Value? |
static int |
indexOfBranchProfile(Instruction i)
Return the index of the operand called BranchProfile in the argument instruction. |
static int |
indexOfGoal(Instruction i)
Return the index of the operand called Goal in the argument instruction. |
static int |
indexOfGuard(Instruction i)
Return the index of the operand called Guard in the argument instruction. |
static int |
indexOfTarget(Instruction i)
Return the index of the operand called Target in the argument instruction. |
static int |
indexOfValue(Instruction i)
Return the index of the operand called Value in the argument instruction. |
static Instruction |
mutate(Instruction i,
Operator o,
Operand Value,
Operand Guard,
Operand Goal,
BranchOperand Target,
BranchProfileOperand BranchProfile)
Mutate the argument instruction into an instruction of the InlineGuard instruction format having the specified operator and operands. |
static void |
setBranchProfile(Instruction i,
BranchProfileOperand BranchProfile)
Set the operand called BranchProfile in the argument instruction to the argument operand. |
static void |
setGoal(Instruction i,
Operand Goal)
Set the operand called Goal in the argument instruction to the argument operand. |
static void |
setGuard(Instruction i,
Operand Guard)
Set the operand called Guard in the argument instruction to the argument operand. |
static void |
setTarget(Instruction i,
BranchOperand Target)
Set the operand called Target in the argument instruction to the argument operand. |
static void |
setValue(Instruction i,
Operand Value)
Set the operand called Value in the argument instruction to the argument operand. |
Methods inherited from class org.jikesrvm.compilers.opt.ir.InstructionFormat |
---|
fail, fail |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public InlineGuard()
Method Detail |
---|
public static boolean conforms(Instruction i)
i
- an instruction
true
if the InstructionFormat of the argument
instruction is InlineGuard or false
if it is not.public static boolean conforms(Operator o)
o
- an instruction
true
if the InstructionFormat of the argument
operator is InlineGuard or false
if it is not.public static Operand getValue(Instruction i)
i
- the instruction to fetch the operand from
public static Operand getClearValue(Instruction i)
i
- the instruction to fetch the operand from
public static void setValue(Instruction i, Operand Value)
i
- the instruction in which to store the operandValue
- the operand to storepublic static int indexOfValue(Instruction i)
i
- the instruction to access.
public static boolean hasValue(Instruction i)
i
- the instruction to access.
true
if the instruction has an non-null
operand named Value or false
if it does not.public static Operand getGuard(Instruction i)
i
- the instruction to fetch the operand from
public static Operand getClearGuard(Instruction i)
i
- the instruction to fetch the operand from
public static void setGuard(Instruction i, Operand Guard)
i
- the instruction in which to store the operandGuard
- the operand to storepublic static int indexOfGuard(Instruction i)
i
- the instruction to access.
public static boolean hasGuard(Instruction i)
i
- the instruction to access.
true
if the instruction has an non-null
operand named Guard or false
if it does not.public static Operand getGoal(Instruction i)
i
- the instruction to fetch the operand from
public static Operand getClearGoal(Instruction i)
i
- the instruction to fetch the operand from
public static void setGoal(Instruction i, Operand Goal)
i
- the instruction in which to store the operandGoal
- the operand to storepublic static int indexOfGoal(Instruction i)
i
- the instruction to access.
public static boolean hasGoal(Instruction i)
i
- the instruction to access.
true
if the instruction has an non-null
operand named Goal or false
if it does not.public static BranchOperand getTarget(Instruction i)
i
- the instruction to fetch the operand from
public static BranchOperand getClearTarget(Instruction i)
i
- the instruction to fetch the operand from
public static void setTarget(Instruction i, BranchOperand Target)
i
- the instruction in which to store the operandTarget
- the operand to storepublic static int indexOfTarget(Instruction i)
i
- the instruction to access.
public static boolean hasTarget(Instruction i)
i
- the instruction to access.
true
if the instruction has an non-null
operand named Target or false
if it does not.public static BranchProfileOperand getBranchProfile(Instruction i)
i
- the instruction to fetch the operand from
public static BranchProfileOperand getClearBranchProfile(Instruction i)
i
- the instruction to fetch the operand from
public static void setBranchProfile(Instruction i, BranchProfileOperand BranchProfile)
i
- the instruction in which to store the operandBranchProfile
- the operand to storepublic static int indexOfBranchProfile(Instruction i)
i
- the instruction to access.
public static boolean hasBranchProfile(Instruction i)
i
- the instruction to access.
true
if the instruction has an non-null
operand named BranchProfile or false
if it does not.public static Instruction create(Operator o, Operand Value, Operand Guard, Operand Goal, BranchOperand Target, BranchProfileOperand BranchProfile)
o
- the instruction's operatorValue
- the instruction's Value operandGuard
- the instruction's Guard operandGoal
- the instruction's Goal operandTarget
- the instruction's Target operandBranchProfile
- the instruction's BranchProfile operand
public static Instruction mutate(Instruction i, Operator o, Operand Value, Operand Guard, Operand Goal, BranchOperand Target, BranchProfileOperand BranchProfile)
i
- the instruction to mutateo
- the instruction's operatorValue
- the instruction's Value operandGuard
- the instruction's Guard operandGoal
- the instruction's Goal operandTarget
- the instruction's Target operandBranchProfile
- the instruction's BranchProfile operand
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |