LLVM 20.0.0git
Interval.cpp
Go to the documentation of this file.
1//===- Interval.cpp -------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
11#include "llvm/Support/Debug.h"
13
14namespace llvm::sandboxir {
15
16template class Interval<Instruction>;
17template class Interval<MemDGNode>;
18
19#ifndef NDEBUG
20template <typename T> void Interval<T>::dump() const { print(dbgs()); }
21#endif
22} // namespace llvm::sandboxir
std::pair< uint64_t, uint64_t > Interval
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163