block.h 1.9 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
#include <list>
19
#include "paddle/ir/core/operation.h"
Z
zhangbo9674 已提交
20 21

namespace ir {
22 23
class Region;

Z
zhangbo9674 已提交
24 25 26 27
class Block {
 public:
  using iterator = std::list<Operation *>::iterator;
  using reverse_iterator = std::list<Operation *>::reverse_iterator;
28
  using const_iterator = std::list<Operation *>::const_iterator;
Z
zhangbo9674 已提交
29 30 31 32

  Block() = default;
  ~Block();

33
  Region *parent() const { return parent_; }
Z
zhangbo9674 已提交
34 35 36 37 38 39 40 41
  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(); }

42 43 44 45 46
  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 已提交
47 48
  void clear();

49 50 51 52 53 54
  Region *GetParentRegion() const { return parent_; }

  Operation *GetParentOp() const {
    return parent_ ? parent_->GetParentOp() : nullptr;
  }

Z
zhangbo9674 已提交
55 56
 private:
  Block(Block &) = delete;
57 58 59 60
  Block &operator=(const Block &) = delete;

  friend class Region;
  void set_parent(Region *parent) { parent_ = parent; }
Z
zhangbo9674 已提交
61 62

 private:
63
  Region *parent_;              // not owned
Z
zhangbo9674 已提交
64 65 66
  std::list<Operation *> ops_;  // owned
};
}  // namespace ir