blob: b0ec9555df720f2af46a1a6b45b172cb2fac37c6 [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 BooleanFrameType extends SinglePrimitiveFrameType {
static final BooleanFrameType SINGLETON = new BooleanFrameType();
private BooleanFrameType() {}
@Override
public DexType getInitializedType(DexItemFactory dexItemFactory) {
return dexItemFactory.booleanType;
}
@Override
public String getTypeName() {
return "boolean";
}
@Override
public Object getTypeOpcode(GraphLens graphLens, NamingLens namingLens) {
throw new Unreachable("Unexpected value type: " + this);
}
@Override
public boolean hasIntVerificationType() {
return true;
}
@Override
public boolean isBoolean() {
return true;
}
}