blob: 95d7a3906a32145c2623c1199709dc0066d0185b [file] [log] [blame]
// Copyright (c) 2020, the Dart 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.
#ifndef RUNTIME_VM_COMPILER_API_PRINT_FILTER_H_
#define RUNTIME_VM_COMPILER_API_PRINT_FILTER_H_
#include "platform/globals.h" // For INCLUDE_IL_PRINTER
#if defined(INCLUDE_IL_PRINTER)
#include "platform/allocation.h"
namespace dart {
class Function;
namespace compiler {
class PrintFilter : public AllStatic {
public:
static bool ShouldPrint(const Function& function,
uint8_t** compiler_pass_filter = nullptr);
};
} // namespace compiler
} // namespace dart
#endif // defined(INCLUDE_IL_PRINTER)
#endif // RUNTIME_VM_COMPILER_API_PRINT_FILTER_H_