Home | History | Annotate | Download | only in Core

Lines Matching refs:pass

14 #include "lld/Core/Pass.h"
21 class Pass;
27 /// In the future this should handle timing pass runs, running parallel passes,
28 /// and validate/satisfy pass dependencies.
31 void add(std::unique_ptr<Pass> pass) {
32 _passes.push_back(std::move(pass));
36 for (std::unique_ptr<Pass> &pass : _passes)
37 if (llvm::Error EC = pass->perform(file))
44 std::vector<std::unique_ptr<Pass>> _passes;