blob: e6aa4da709d02d20e067ea26d0453ad02cfb5c57 [file] [log] [blame]
// Copyright (c) 2022, 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.frame;
import com.android.tools.r8.errors.Unreachable;
import com.android.tools.r8.graph.DexItemFactory;
import com.android.tools.r8.graph.DexType;
import com.android.tools.r8.graph.lens.GraphLens;
import com.android.tools.r8.naming.NamingLens;
public class ByteFrameType extends SinglePrimitiveFrameType {
static final ByteFrameType SINGLETON = new ByteFrameType();
private ByteFrameType() {}
@Override
public DexType getInitializedType(DexItemFactory dexItemFactory) {
return dexItemFactory.byteType;
}
@Override
public String getTypeName() {
return "byte";
}
@Override
public Object getTypeOpcode(GraphLens graphLens, NamingLens namingLens) {
throw new Unreachable("Unexpected value type: " + this);
}
@Override
public boolean hasIntVerificationType() {
return true;
}
@Override
public boolean isByte() {
return true;
}
}