SPIRV-Tools/source/opt/loop_fission.h
Diego Novillo 03000a3a38 Add testing framework for tools.
This forks the testing harness from https://github.com/google/shaderc
to allow testing CLI tools.

New features needed for SPIRV-Tools include:

1- A new PlaceHolder subclass for spirv shaders.  This place holder
   calls spirv-as to convert assembly input into SPIRV bytecode. This is
   required for most tools in SPIRV-Tools.

2- A minimal testing file for testing basic functionality of spirv-opt.

Add tests for all flags in spirv-opt.

1. Adds tests to check that known flags match the names that each pass
   advertises.
2. Adds tests to check that -O, -Os and --legalize-hlsl schedule the
   expected passes.
3. Adds more functionality to Expect classes to support regular
   expression matching on stderr.
4. Add checks for integer arguments to optimization flags.
5. Fixes #1817 by modifying the parsing of integer arguments in
   flags that take them.
6. Fixes -Oconfig file parsing (#1778). It reads every line of the file
   into a string and then parses that string by tokenizing every group of
   characters between whitespaces (using the standard cin reading
   operator).  This mimics shell command-line parsing, but it does not
   support quoting (and I'm not planning to).
2018-08-17 15:03:14 -04:00

79 lines
2.7 KiB
C++

// Copyright (c) 2018 Google LLC.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef SOURCE_OPT_LOOP_FISSION_H_
#define SOURCE_OPT_LOOP_FISSION_H_
#include <algorithm>
#include <cstdint>
#include <map>
#include <utility>
#include <vector>
#include "source/opt/cfg.h"
#include "source/opt/loop_dependence.h"
#include "source/opt/loop_utils.h"
#include "source/opt/module.h"
#include "source/opt/pass.h"
#include "source/opt/tree_iterator.h"
namespace spvtools {
namespace opt {
class LoopFissionPass : public Pass {
public:
// Fuction used to determine if a given loop should be split. Takes register
// pressure region for that loop as a parameter and returns true if the loop
// should be split.
using FissionCriteriaFunction =
std::function<bool(const RegisterLiveness::RegionRegisterLiveness&)>;
// Pass built with this constructor will split all loops regardless of
// register pressure. Will not split loops more than once.
LoopFissionPass();
// Split the loop if the number of registers used in the loop exceeds
// |register_threshold_to_split|. |split_multiple_times| flag determines
// whether or not the pass should split loops after already splitting them
// once.
LoopFissionPass(size_t register_threshold_to_split,
bool split_multiple_times = true);
// Split loops whose register pressure meets the criteria of |functor|.
LoopFissionPass(FissionCriteriaFunction functor,
bool split_multiple_times = true)
: split_criteria_(functor), split_multiple_times_(split_multiple_times) {}
const char* name() const override { return "loop-fission"; }
Pass::Status Process() override;
// Checks if |loop| meets the register pressure criteria to be split.
bool ShouldSplitLoop(const Loop& loop, IRContext* context);
private:
// Functor to run in ShouldSplitLoop to determine if the register pressure
// criteria is met for splitting the loop.
FissionCriteriaFunction split_criteria_;
// Flag designating whether or not we should also split the result of
// previously split loops if they meet the register presure criteria.
bool split_multiple_times_;
};
} // namespace opt
} // namespace spvtools
#endif // SOURCE_OPT_LOOP_FISSION_H_