block.h 2.8 KB
Newer Older
Z
zhangbo9674 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2023 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

17
#include <cstddef>
Z
zhangbo9674 已提交
18 19
#include <list>

20
#include "paddle/ir/core/block_operand.h"
21
#include "paddle/ir/core/dll_decl.h"
22
#include "paddle/ir/core/region.h"
23
#include "paddle/ir/core/use_iterator.h"
24

Z
zhangbo9674 已提交
25
namespace ir {
26
class Operation;
27

28
class IR_API Block {
29 30
  using OpListType = std::list<Operation *>;

Z
zhangbo9674 已提交
31
 public:
32 33 34
  using iterator = OpListType::iterator;
  using reverse_iterator = OpListType::reverse_iterator;
  using const_iterator = OpListType::const_iterator;
Z
zhangbo9674 已提交
35 36 37 38

  Block() = default;
  ~Block();

39 40 41
  Region *GetParent() const { return parent_; }
  Operation *GetParentOp() const;

Z
zhangbo9674 已提交
42 43 44
  bool empty() const { return ops_.empty(); }
  size_t size() const { return ops_.size(); }

45 46
  const_iterator begin() const { return ops_.begin(); }
  const_iterator end() const { return ops_.end(); }
Z
zhangbo9674 已提交
47 48 49 50 51
  iterator begin() { return ops_.begin(); }
  iterator end() { return ops_.end(); }
  reverse_iterator rbegin() { return ops_.rbegin(); }
  reverse_iterator rend() { return ops_.rend(); }

52 53 54 55 56
  Operation *back() const { return ops_.back(); }
  Operation *front() const { return ops_.front(); }
  void push_back(Operation *op);
  void push_front(Operation *op);
  iterator insert(const_iterator iterator, Operation *op);
57
  iterator erase(const_iterator position);
Z
zhangbo9674 已提交
58
  void clear();
59
  operator Region::iterator() { return position_; }
Z
zhangbo9674 已提交
60

61 62 63 64 65 66 67 68 69 70 71 72
  ///
  /// \brief Provide iterator interface to access Value use chain.
  ///
  using UseIterator = ValueUseIterator<BlockOperand>;
  UseIterator use_begin() const;
  UseIterator use_end() const;
  BlockOperand first_use() const { return first_use_; }
  void set_first_use(BlockOperand first_use) { first_use_ = first_use; }
  bool use_empty() const { return !first_use_; }
  bool HasOneUse() const;
  BlockOperand *first_use_addr() { return &first_use_; }

Z
zyfncg 已提交
73 74
  void ResetOpListOrder(const OpListType &new_op_list);

Z
zhangbo9674 已提交
75 76
 private:
  Block(Block &) = delete;
77 78
  Block &operator=(const Block &) = delete;

79
  // Allow access to 'SetParent'.
80
  friend class Region;
81
  void SetParent(Region *parent, Region::iterator position);
Z
zhangbo9674 已提交
82

Z
zyfncg 已提交
83 84
  static bool TopoOrderCheck(const OpListType &op_list);

Z
zhangbo9674 已提交
85
 private:
86
  Region *parent_;  // not owned
87
  OpListType ops_;  // owned
88
  Region::iterator position_;
89
  BlockOperand first_use_;
Z
zhangbo9674 已提交
90 91
};
}  // namespace ir