block.h 1.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 20
#include <list>

namespace ir {
21
class Region;
22
class Operation;
23

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 34 35
  Region *GetParent() const { return parent_; }
  Operation *GetParentOp() const;

Z
zhangbo9674 已提交
36 37 38 39 40 41 42 43
  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(); }

44 45 46 47 48
  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 已提交
49 50 51 52
  void clear();

 private:
  Block(Block &) = delete;
53 54 55
  Block &operator=(const Block &) = delete;

  friend class Region;
56
  void SetParent(Region *parent) { parent_ = parent; }
Z
zhangbo9674 已提交
57 58

 private:
59
  Region *parent_;              // not owned
Z
zhangbo9674 已提交
60 61 62
  std::list<Operation *> ops_;  // owned
};
}  // namespace ir