119 lines
3.4 KiB
C++
119 lines
3.4 KiB
C++
// Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
|
|
//
|
|
// 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.
|
|
#pragma once
|
|
|
|
#include <unordered_map>
|
|
|
|
#include "paddle/common/enforce.h"
|
|
#include "paddle/pir/include/core/value.h"
|
|
|
|
namespace pir {
|
|
class Block;
|
|
class Operation;
|
|
|
|
namespace detail {
|
|
template <typename T, typename... OthersT>
|
|
struct ExactlyOneIrType {
|
|
using type = void;
|
|
};
|
|
template <typename T, typename FirstT, typename... OthersT>
|
|
struct ExactlyOneIrType<T, FirstT, OthersT...> {
|
|
using type =
|
|
std::conditional_t<std::is_convertible<T, FirstT>::value,
|
|
FirstT,
|
|
typename ExactlyOneIrType<T, OthersT...>::type>;
|
|
};
|
|
} // namespace detail
|
|
|
|
class IrMapping {
|
|
public:
|
|
template <typename T>
|
|
using remove_lowlevel_const_t = std::conditional_t<
|
|
std::is_pointer<T>::value,
|
|
std::add_pointer_t<std::remove_const_t<std::remove_pointer_t<T>>>,
|
|
T>;
|
|
template <typename T>
|
|
using IrType = typename detail::ExactlyOneIrType<remove_lowlevel_const_t<T>,
|
|
Value,
|
|
Block*,
|
|
Operation*>::type;
|
|
|
|
template <typename T>
|
|
auto& GetMutableMap() {
|
|
if constexpr (std::is_same<T, Value>::value) {
|
|
return value_map_;
|
|
} else if constexpr (std::is_same<T, Block*>::value) {
|
|
return block_map_;
|
|
} else if constexpr (std::is_same<T, Operation*>::value) {
|
|
return operation_map_;
|
|
} else {
|
|
IR_THROW("Not support type in IRMapping.");
|
|
}
|
|
}
|
|
|
|
template <typename T>
|
|
const auto& GetMap() const {
|
|
if constexpr (std::is_same<T, Value>::value) {
|
|
return value_map_;
|
|
} else if constexpr (std::is_same<T, Block*>::value) {
|
|
return block_map_;
|
|
} else if constexpr (std::is_same<T, Operation*>::value) {
|
|
return operation_map_;
|
|
} else {
|
|
IR_THROW("Not support type in IRMapping.");
|
|
}
|
|
}
|
|
|
|
template <typename T, typename S>
|
|
void Add(T from, S to) {
|
|
if (!from) return;
|
|
GetMutableMap<IrType<T>>()[from] = to;
|
|
}
|
|
|
|
template <typename T>
|
|
bool Has(T from) const {
|
|
if (!from) return false;
|
|
bool has_value = GetMap<IrType<T>>().count(from) > 0UL;
|
|
return has_value;
|
|
}
|
|
|
|
template <typename T>
|
|
IrType<T> Lookup(T from) const {
|
|
if (!from) return static_cast<IrType<T>>(nullptr);
|
|
PADDLE_ENFORCE_GT(
|
|
GetMap<IrType<T>>().count(from),
|
|
0UL,
|
|
common::errors::InvalidArgument("Not found key in IRMapping."));
|
|
return GetMap<IrType<T>>().at(from);
|
|
}
|
|
|
|
template <typename T>
|
|
void Erase(T from) {
|
|
GetMutableMap<IrType<T>>().erase(from);
|
|
}
|
|
|
|
void Clear() {
|
|
value_map_.clear();
|
|
block_map_.clear();
|
|
operation_map_.clear();
|
|
}
|
|
|
|
private:
|
|
std::unordered_map<Value, Value> value_map_;
|
|
std::unordered_map<const Block*, Block*> block_map_;
|
|
std::unordered_map<const Operation*, Operation*> operation_map_;
|
|
};
|
|
|
|
} // namespace pir
|