scale.backend.alpha
Class LoadAddressInstruction

java.lang.Object
  extended by scale.backend.Instruction
      extended by scale.backend.alpha.MemoryInstruction
          extended by scale.backend.alpha.LoadAddressInstruction
All Implemented Interfaces:
java.lang.Cloneable

public class LoadAddressInstruction
extends MemoryInstruction

This class represents Alpha load address instructions.

$Id: LoadAddressInstruction.java,v 1.34 2006-11-09 00:56:09 burrill Exp $

Copyright 2005 by the Scale Compiler Group,
Department of Computer Science
University of Massachusetts,
Amherst MA. 01003, USA
All Rights Reserved.


Field Summary
 
Fields inherited from class scale.backend.alpha.MemoryInstruction
displacement, opcode, ra, rb, relocType
 
Constructor Summary
LoadAddressInstruction(int opcode, int ra, int rb)
           
LoadAddressInstruction(int opcode, int ra, int rb, Displacement displacement)
           
LoadAddressInstruction(int opcode, int ra, int rb, Displacement displacement, int relocType)
           
 
Method Summary
 void assembler(Assembler asm, Emit emit)
          Insert the assembler representation of the instruction into the output stream.
 boolean canBeDeleted(RegisterSet registers)
          Return true if the instruction can be deleted without changing program semantics.
static int created()
          Return the number of instances of this class created.
 boolean defs(int register, RegisterSet registers)
          Return true if the instruction sets the register
 int getDestRegister()
          Return the destination register or -1 if none.
 int getExecutionCycles()
          Return the number of cycles that this instruction requires.
 int getFunctionalUnit()
          Return the number of the functional unit required to execute this instruction.
 boolean independent(Instruction inst, RegisterSet registers)
          Return true if this instruction is independent of the specified instruction.
 void nullify(RegisterSet rs)
          Mark the instruction as no longer needed.
 void specifyRegisterUsage(RegisterAllocator rs, int index, int strength)
          Specify the registers used by this instruction.
 boolean uses(int register, RegisterSet registers)
          Return true if the instruction uses the register.
 
Methods inherited from class scale.backend.alpha.MemoryInstruction
getDisplacement, getOpcode, getRa, getRb, getRelocType, instructionSize, remapDestRegister, remapRegisters, remapSrcRegister, setDisplacement, setRb, toString
 
Methods inherited from class scale.backend.Instruction
clone, copy, ehash, getBBID, getCopyDest, getCopySrc, getLoopNumber, getNext, getPredicate, getPredicates, getSrcRegisters, getTag, isBranch, isCopy, isLabel, isLoad, isMandatory, isMarker, isPhi, isPredicated, isPredicatedOnTrue, isPrefetch, isSpillInstruction, isSpillLoadPoint, isSpillStorePoint, isStore, markSpillInstruction, mods, nullified, numPredicates, removePredicates, setBBID, setLoopNumber, setMandatory, setNext, setPredicate, setPredicate, setPredicatedOnTrue, setPredicates, setsSpecialReg, setTag, specifyNotSpillLoadPoint, specifySpillStorePoint
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LoadAddressInstruction

public LoadAddressInstruction(int opcode,
                              int ra,
                              int rb)

LoadAddressInstruction

public LoadAddressInstruction(int opcode,
                              int ra,
                              int rb,
                              Displacement displacement)

LoadAddressInstruction

public LoadAddressInstruction(int opcode,
                              int ra,
                              int rb,
                              Displacement displacement,
                              int relocType)
Method Detail

created

public static int created()
Return the number of instances of this class created.


getDestRegister

public int getDestRegister()
Return the destination register or -1 if none.

Overrides:
getDestRegister in class Instruction

getExecutionCycles

public int getExecutionCycles()
Return the number of cycles that this instruction requires.

Overrides:
getExecutionCycles in class MemoryInstruction

getFunctionalUnit

public int getFunctionalUnit()
Return the number of the functional unit required to execute this instruction.

Overrides:
getFunctionalUnit in class MemoryInstruction

assembler

public void assembler(Assembler asm,
                      Emit emit)
Description copied from class: MemoryInstruction
Insert the assembler representation of the instruction into the output stream.

Overrides:
assembler in class MemoryInstruction

nullify

public void nullify(RegisterSet rs)
Mark the instruction as no longer needed.

Overrides:
nullify in class Instruction

canBeDeleted

public boolean canBeDeleted(RegisterSet registers)
Return true if the instruction can be deleted without changing program semantics.

Overrides:
canBeDeleted in class Instruction

specifyRegisterUsage

public void specifyRegisterUsage(RegisterAllocator rs,
                                 int index,
                                 int strength)
Specify the registers used by this instruction.

Specified by:
specifyRegisterUsage in class Instruction
Parameters:
rs - is the register set in use
index - is an index associated with the instruction
strength - is the importance of the instruction
See Also:
RegisterAllocator.useRegister(int,int,int), RegisterAllocator.defRegister(int,int)

uses

public boolean uses(int register,
                    RegisterSet registers)
Return true if the instruction uses the register.

Overrides:
uses in class Instruction

defs

public boolean defs(int register,
                    RegisterSet registers)
Return true if the instruction sets the register

Overrides:
defs in class Instruction

independent

public boolean independent(Instruction inst,
                           RegisterSet registers)
Return true if this instruction is independent of the specified instruction. If instructions are independent, than one instruction can be moved before or after the other instruction without changing the semantics of the program.

Overrides:
independent in class MemoryInstruction
Parameters:
inst - is the specified instruction