Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

LLOAD.java

00001 package de.fub.bytecode.generic;
00002 
00003 /** 
00004  * LLOAD - Load long from local variable
00005  *<PRE>Stack ... -&GT; ..., result.word1, result.word2</PRE>
00006  *
00007  * @version $Id: LLOAD.java,v 1.1.1.1 2002/01/24 03:41:41 pserver Exp $
00008  * @author  <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A>
00009  */
00010 public class LLOAD extends LocalVariableInstruction
00011   implements PushInstruction, LoadInstruction {
00012   /**
00013    * Empty constructor needed for the Class.newInstance() statement in
00014    * Instruction.readInstruction(). Not to be used otherwise.
00015    */
00016   LLOAD() {
00017     super(de.fub.bytecode.Constants.LLOAD, de.fub.bytecode.Constants.LLOAD_0);
00018   }  
00019   public LLOAD(int n) {
00020     super(de.fub.bytecode.Constants.LLOAD, de.fub.bytecode.Constants.LLOAD_0, n);
00021   }  
00022   /**
00023    * Call corresponding visitor method(s). The order is:
00024    * Call visitor methods of implemented interfaces first, then
00025    * call methods according to the class hierarchy in descending order,
00026    * i.e., the most specific visitXXX() call comes last.
00027    *
00028    * @param v Visitor object
00029    */
00030   public void accept(Visitor v) {
00031     v.visitStackProducer(this);
00032     v.visitPushInstruction(this);
00033     v.visitLoadInstruction(this);
00034     v.visitTypedInstruction(this);
00035     v.visitLocalVariableInstruction(this);
00036     v.visitLLOAD(this);
00037   }  
00038 }

Generated at Thu Feb 7 06:49:41 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001