2022-10-04 21:09:45 -07:00
|
|
|
//===- DeltaManager.h - Runs Delta Passes to reduce Input -------*- C++ -*-===//
|
2019-08-08 22:16:33 +00:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file calls each specialized Delta pass in order to reduce the input IR
|
|
|
|
// file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2021-04-01 20:38:39 -07:00
|
|
|
#ifndef LLVM_TOOLS_LLVM_REDUCE_DELTAMANAGER_H
|
|
|
|
#define LLVM_TOOLS_LLVM_REDUCE_DELTAMANAGER_H
|
|
|
|
|
2019-08-08 22:16:33 +00:00
|
|
|
namespace llvm {
|
2021-04-30 11:48:03 -07:00
|
|
|
class raw_ostream;
|
|
|
|
class TestRunner;
|
|
|
|
|
|
|
|
void printDeltaPasses(raw_ostream &OS);
|
2022-01-10 22:24:23 -07:00
|
|
|
void runDeltaPasses(TestRunner &Tester, int MaxPassIterations);
|
2019-08-08 22:16:33 +00:00
|
|
|
} // namespace llvm
|
2021-04-01 20:38:39 -07:00
|
|
|
|
|
|
|
#endif
|