//===-- llvm/CodeGen/PseudoSourceValueManager.h -----------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file contains the declaration of the PseudoSourceValueManager class. // //===----------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_PSEUDOSOURCEVALUEMANAGER_H #define LLVM_CODEGEN_PSEUDOSOURCEVALUEMANAGER_H #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringMap.h" #include "llvm/CodeGen/PseudoSourceValue.h" #include "llvm/IR/ValueMap.h" namespace llvm { class GlobalValue; class TargetMachine; /// Manages creation of pseudo source values. class PseudoSourceValueManager { … }; } // end namespace llvm #endif