cfg
Class BinaryDivInst
java.lang.Object
cfg.TACInst
cfg.BinaryInst
cfg.BinaryDivInst
public class BinaryDivInst
- extends BinaryInst
A class representing a three-address code binary integer division instruction
(BinaryDivInst). A binary multiplication instruction consists of a destination variable
a left source operand (inherited from BinaryInst) and a right source operand
(inherited from BinaryInst). From TACInst it also inherits an opcode
(BINDIV).
| Fields inherited from class cfg.TACInst |
BINADD, BINAND, BINDIV, BINMOD, BINMUL, BINOR, BINSUB, comments, DIRCALL, ERRPARAM, IF, INDIRCALL, LDADDR, LDCONST, LDENTRY, LDVAR, NUM_INSN_TYPES, opcode, REFPARAM, RETN, STDPARAM, STENTRY, UNNEG, UNNOT |
|
Constructor Summary |
BinaryDivInst(java.lang.String destination,
java.lang.String leftSource,
java.lang.String rightSource)
BinaryDivInst constructor |
|
Method Summary |
void |
setLeftSource(java.lang.String leftSource)
Set the left soure operand |
void |
setRightSource(java.lang.String rightSource)
Set the right soure operand |
| Methods inherited from class cfg.TACInst |
addComment, checkBoolConst, checkConst, checkIntConst, checkLabel, checkStrConst, checkVar, getBinaryOpcode, getComments, getOp, getOpcode, getUnaryOpcode, isBinary, isCall, isIf, isLoad, isParam, isReturn, isStore, isUnary, isValidID, removeComments, toString |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
BinaryDivInst
public BinaryDivInst(java.lang.String destination,
java.lang.String leftSource,
java.lang.String rightSource)
- BinaryDivInst constructor
- Parameters:
destination - destination variableleftSource - left source variablerightSource - right source variable
setLeftSource
public void setLeftSource(java.lang.String leftSource)
- Set the left soure operand
- Specified by:
setLeftSource in class BinaryInst
- Parameters:
leftSource - new left source operand
setRightSource
public void setRightSource(java.lang.String rightSource)
- Set the right soure operand
- Specified by:
setRightSource in class BinaryInst
- Parameters:
rightSource - new right source operand