
The Analyses class provides a way to pass around commonly used Analyses to SandboxIR passes throught `runOnFunction()` and `runOnRegion()` functions.
34 lines
1021 B
C++
34 lines
1021 B
C++
//===- PassManager.cpp - Runs a pipeline of Sandbox IR passes -------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/SandboxIR/PassManager.h"
|
|
|
|
namespace llvm::sandboxir {
|
|
|
|
bool FunctionPassManager::runOnFunction(Function &F, const Analyses &A) {
|
|
bool Change = false;
|
|
for (auto &Pass : Passes) {
|
|
Change |= Pass->runOnFunction(F, A);
|
|
// TODO: run the verifier.
|
|
}
|
|
// TODO: Check ChangeAll against hashes before/after.
|
|
return Change;
|
|
}
|
|
|
|
bool RegionPassManager::runOnRegion(Region &R, const Analyses &A) {
|
|
bool Change = false;
|
|
for (auto &Pass : Passes) {
|
|
Change |= Pass->runOnRegion(R, A);
|
|
// TODO: run the verifier.
|
|
}
|
|
// TODO: Check ChangeAll against hashes before/after.
|
|
return Change;
|
|
}
|
|
|
|
} // namespace llvm::sandboxir
|