00001 package de.fub.bytecode.generic;
00002
00003
00004
00005
00006
00007
00008
00009
00010 public class LLOAD extends LocalVariableInstruction
00011 implements PushInstruction, LoadInstruction {
00012
00013
00014
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
00024
00025
00026
00027
00028
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 }