blob: c7183910f9d5fcb8c1a6e1a4293036df7f4581ec [file] [log] [blame]
// Copyright (c) 2020, 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.ir.optimize.info.bridge;
/**
* A piece of optimization info that is computed for bridge methods. The info stores details about
* the behavior of the bridge.
*/
public abstract class BridgeInfo {
public abstract boolean hasSameTarget(BridgeInfo bridgeInfo);
public boolean isVirtualBridgeInfo() {
return false;
}
public VirtualBridgeInfo asVirtualBridgeInfo() {
return null;
}
}