159 lines
5.4 KiB
C++
159 lines
5.4 KiB
C++
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you 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.
|
|
*/
|
|
|
|
/*!
|
|
* \file tvm/ir/instrument.h
|
|
*
|
|
* This file introduces a pass instrument infrastructure, inspired by LLVM and MLIR.
|
|
* It inserts instrumentation points around passes.
|
|
*/
|
|
#ifndef TVM_IR_INSTRUMENT_H_
|
|
#define TVM_IR_INSTRUMENT_H_
|
|
|
|
#include <tvm/ffi/reflection/registry.h>
|
|
#include <tvm/ffi/string.h>
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace tvm {
|
|
|
|
class IRModule;
|
|
|
|
// Forward class for PassInstrumentNode methods
|
|
namespace transform {
|
|
class PassInfo;
|
|
} // namespace transform
|
|
|
|
namespace instrument {
|
|
|
|
/*!
|
|
* \brief PassInstrumentNode forms an instrument implementation.
|
|
* It provides API for users to register callbacks at different instrumentation points.
|
|
*
|
|
* Within a PassContext, call sequence of a PassInstrument implementation is like:
|
|
*
|
|
* with PassContext(instruments=[pi]): # pi = a PassInstrument implementation
|
|
* pi.EnterPassContext()
|
|
*
|
|
* if pi.ShouldRun(Pass1):
|
|
* pi.RunBeforePass()
|
|
* Pass1()
|
|
* pi.RunAfterPass()
|
|
*
|
|
* if pi.ShouldRun(Pass2):
|
|
* pi.RunBeforePass()
|
|
* Pass2()
|
|
* pi.RunAfterPass()
|
|
*
|
|
* pi.ExitPassContext()
|
|
*
|
|
* `EnterPassContext` and `ExitPassContext` are only called once when entering/exiting a
|
|
* PassContext. `ShouldRun`, `RunBeforePass` and `RunAfterPass` are called multiple times depending
|
|
* on how many passes.
|
|
*
|
|
* If there are multiple pass instrumentations provided, the instrument points are the same.
|
|
* PassInstrument implementations' callbacks are called in order:
|
|
*
|
|
* with PassContext(instruments=[pi1, pi2]): # pi1, pi2 = two distinct PassInstrument impls
|
|
* pi.EnterPassContext() for pi in instruments
|
|
*
|
|
* should_run = all([pi.ShoudRun(Pass1) for pi in instruments)])
|
|
* if (should_run)
|
|
* pi.RunBeforePass() for pi in instruments
|
|
* Pass1()
|
|
* pi.RunAfterPass() for pi in instruments
|
|
*
|
|
* should_run = all([pi.ShouldRun(Pass2) for pi in instruments)])
|
|
* if (should_run)
|
|
* pi.RunBeforePass() for pi in instruments
|
|
* Pass2()
|
|
* pi.RunAfterPass() for pi in instruments
|
|
*
|
|
* pi.ExitPassContext() for pi in instruments
|
|
*
|
|
* Note:
|
|
* 1. Assume there is no dependency between PassInstrument implementations in `instruments` .
|
|
* 2. `EnterPassContext` and `ExitPassContext` have `with` behavior (see PassContext and its FFI):
|
|
* If there is any exception raised in `ShouldRun()`, `RunBeforePass()`, `RunAfterPass()` and
|
|
* `Pass()`, `ExitPassContext()` is still called.
|
|
* 3. In mutiple PassInstrument instances scenario, callbacks are called in order:
|
|
* If one throws exceptions, remainings will not be called.
|
|
*
|
|
* \sa PassInstrument
|
|
* \sa src/ir/transform.cc
|
|
*/
|
|
class PassInstrumentNode : public ffi::Object {
|
|
public:
|
|
/*! \brief Name of this pass instrument object. */
|
|
ffi::String name;
|
|
|
|
virtual ~PassInstrumentNode() {}
|
|
|
|
/*! \brief Instrument when entering PassContext. Called once within a PassContext. */
|
|
virtual void EnterPassContext() const = 0;
|
|
|
|
/*! \brief Instrument when exiting PassContext. Called once within a PassContext. */
|
|
virtual void ExitPassContext() const = 0;
|
|
|
|
/*!
|
|
* \brief Determine whether to run the pass or not. Called multiple times depend on number of
|
|
* passes.
|
|
* \param mod The module that an optimization pass runs on.
|
|
* \param info The pass information.
|
|
*
|
|
* \return true to run the pass; false to skip the pass.
|
|
*/
|
|
virtual bool ShouldRun(const IRModule& mod, const transform::PassInfo& info) const = 0;
|
|
|
|
/*!
|
|
* \brief Instrument before pass run. Called multiple times depend on number of passes.
|
|
* \param mod The module that an optimization pass runs on.
|
|
* \param info The pass information.
|
|
*/
|
|
virtual void RunBeforePass(const IRModule& mod, const transform::PassInfo& info) const = 0;
|
|
|
|
/*!
|
|
* \brief Instrument after pass run. Called multiple time depend on number of passes.
|
|
* \param mod The module that an optimization pass runs on.
|
|
* \param info The pass information.
|
|
*/
|
|
virtual void RunAfterPass(const IRModule& mod, const transform::PassInfo& info) const = 0;
|
|
|
|
static void RegisterReflection() {
|
|
namespace refl = tvm::ffi::reflection;
|
|
refl::ObjectDef<PassInstrumentNode>().def_ro("name", &PassInstrumentNode::name);
|
|
}
|
|
TVM_FFI_DECLARE_OBJECT_INFO("instrument.PassInstrument", PassInstrumentNode, ffi::Object);
|
|
};
|
|
|
|
/*!
|
|
* \brief Managed reference class for PassInstrumentNode
|
|
* \sa PassInstrumentNode
|
|
*/
|
|
class PassInstrument : public ffi::ObjectRef {
|
|
public:
|
|
TVM_FFI_DEFINE_OBJECT_REF_METHODS_NULLABLE(PassInstrument, ffi::ObjectRef, PassInstrumentNode);
|
|
};
|
|
|
|
} // namespace instrument
|
|
} // namespace tvm
|
|
|
|
#endif // TVM_IR_INSTRUMENT_H_
|