blob: ea8ad11f6123522b9e1563afdb6b91b9e48a2277 [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;
/**
* Consumer receiving the data representing global synthetics for the program.
*
* <p>Global synthetic information is only produced as part of D8 intermediate builds (e.g., for
* incremental compilation.) The global synthetic information represents desugaring content that may
* be duplicated among many intermediate-mode builds and will need to be merged to ensure a valid
* final program (i.e., a program that does not contain any duplicate definitions).
*
* <p>The data obtained for global synthetics must be passed to the subsequent compilation unit that
* builds a non-intermediate output. That compilation output can then be packaged as a final
* application. It is valid to merge just the globals in such a final step. See {@code
* GlobalSyntheticsResourceProvider}.
*/
@Keep
public interface GlobalSyntheticsConsumer {
/**
* Callback to receive the data representing the global synthetics for the program.
*
* <p>The encoding of the global synthetics is compiler internal and may vary between compiler
* versions. The data received here is thus only valid as inputs to the same compiler version.
*
* @param bytes Opaque encoding of the global synthetics for the program.
*/
void accept(byte[] bytes);
}