block.h 2.0 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/dll_decl.h"
21 22
#include "paddle/ir/core/region.h"

Z
zhangbo9674 已提交
23
namespace ir {
24
class Operation;
25

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

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

  Block() = default;
  ~Block();

37 38 39
  Region *GetParent() const { return parent_; }
  Operation *GetParentOp() const;

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

  iterator begin() { return ops_.begin(); }
  iterator end() { return ops_.end(); }
  reverse_iterator rbegin() { return ops_.rbegin(); }
  reverse_iterator rend() { return ops_.rend(); }

48 49 50 51 52
  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);
Z
zhangbo9674 已提交
53
  void clear();
54
  operator Region::iterator() { return position_; }
Z
zhangbo9674 已提交
55 56 57

 private:
  Block(Block &) = delete;
58 59
  Block &operator=(const Block &) = delete;

60
  // Allow access to 'SetParent'.
61
  friend class Region;
62
  void SetParent(Region *parent, Region::iterator position);
Z
zhangbo9674 已提交
63 64

 private:
65
  Region *parent_;  // not owned
66
  OpListType ops_;  // owned
67
  Region::iterator position_;
Z
zhangbo9674 已提交
68 69
};
}  // namespace ir