blob: 58c59a5499f7c575d9034791b25facf7c19b7710 [file] [log] [blame]
// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.cf.code;
import com.android.tools.r8.cf.CfPrinter;
import com.android.tools.r8.errors.Unreachable;
import com.android.tools.r8.ir.code.ValueType;
import com.android.tools.r8.naming.NamingLens;
import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes;
public class CfLoad extends CfInstruction {
private final int var;
private final ValueType type;
public CfLoad(ValueType type, int var) {
this.var = var;
this.type = type;
}
private int getLoadType() {
switch (type) {
case OBJECT:
return Opcodes.ALOAD;
case INT:
return Opcodes.ILOAD;
case FLOAT:
return Opcodes.FLOAD;
case LONG:
return Opcodes.LLOAD;
case DOUBLE:
return Opcodes.DLOAD;
default:
throw new Unreachable("Unexpected type " + type);
}
}
@Override
public void write(MethodVisitor visitor, NamingLens lens) {
visitor.visitVarInsn(getLoadType(), var);
}
@Override
public void print(CfPrinter printer) {
printer.print(this);
}
public ValueType getType() {
return type;
}
public int getLocalIndex() {
return var;
}
}