| /* |
| * 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. |
| */ |
| |
| #include <tvm/ffi/cast.h> |
| #include <tvm/ffi/reflection/registry.h> |
| #include <tvm/relax/analysis.h> |
| #include <tvm/relax/expr.h> |
| #include <tvm/relax/expr_functor.h> |
| |
| #include <map> |
| |
| namespace tvm { |
| namespace relax { |
| class Var2ValAnalysis : public relax::ExprVisitor { |
| public: |
| ffi::Map<Var, Expr> var2value_; |
| void VisitBinding_(const VarBindingNode* binding) override { |
| var2value_.Set(binding->var, binding->value); |
| // Recursively visit the value to handle local functions. |
| VisitExpr(binding->value); |
| } |
| }; |
| |
| ffi::Map<Var, Expr> AnalyzeVar2Value(const Expr& expr) { |
| Var2ValAnalysis var2val_analysis; |
| var2val_analysis.VisitExpr(expr); |
| return std::move(var2val_analysis.var2value_); |
| } |
| |
| ffi::Map<Var, Expr> AnalyzeVar2Value(const DataflowBlock& dfb) { |
| Var2ValAnalysis var2val_analysis; |
| var2val_analysis.VisitBindingBlock_(dfb.get()); |
| return std::move(var2val_analysis.var2value_); |
| } |
| |
| ffi::Map<Var, Expr> AnalyzeVar2Value(const IRModule& m) { |
| Var2ValAnalysis var2val_analysis; |
| |
| for (const auto& it : m->functions) { |
| // visit relax.Function |
| if (auto* n = it.second.as<FunctionNode>()) { |
| var2val_analysis.VisitExpr(ffi::GetRef<Function>(n)); |
| } |
| } |
| |
| return std::move(var2val_analysis.var2value_); |
| } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef().def("relax.analysis.get_var2val", |
| [](const Function& f) { return AnalyzeVar2Value(f); }); |
| } |
| |
| class Name2BindingAnalysis : public relax::ExprVisitor { |
| public: |
| // Map is not suitable for doing in-place update. |
| // so we use standard container for internal usage. |
| std::map<ffi::String, ffi::Array<Binding>> name2bindings_; |
| void VisitBinding_(const VarBindingNode* binding) override { |
| const auto& vname = binding->var->name; |
| name2bindings_[vname].push_back(ffi::GetRef<VarBinding>(binding)); |
| } |
| |
| void VisitBinding_(const MatchCastNode* binding) override { |
| const auto& vname = binding->var->name; |
| name2bindings_[vname].push_back(ffi::GetRef<MatchCast>(binding)); |
| } |
| }; |
| |
| ffi::Map<ffi::String, ffi::Array<Binding>> NameToBinding(const Function& fn) { |
| Name2BindingAnalysis analysis{}; |
| analysis.VisitExpr_(fn.get()); |
| return ffi::Map<ffi::String, ffi::Array<Binding>>( |
| std::make_move_iterator(analysis.name2bindings_.begin()), |
| std::make_move_iterator(analysis.name2bindings_.end())); |
| } |
| |
| TVM_FFI_STATIC_INIT_BLOCK() { |
| namespace refl = tvm::ffi::reflection; |
| refl::GlobalDef().def("relax.analysis.name_to_binding", NameToBinding); |
| } |
| |
| } // namespace relax |
| } // namespace tvm |