blob: 59051e3a988a6b8f8d4cf799e48a288e90d8b390 [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.lightir;
/**
* Abstract view of a LIR instruction.
*
* <p>The view should not be considered a representation of an instruction as the underlying data
* can change. The view callbacks allow interpreting the instruction at different levels of
* abstraction depending on need.
*/
public interface LIRInstructionView {
void accept(LIRBasicInstructionCallback eventCallback);
}