Changeset View
Changeset View
Standalone View
Standalone View
llvm/lib/Target/Hexagon/RDFCopy.cpp
//===- RDFCopy.cpp --------------------------------------------------------===// | //===- RDFCopy.cpp --------------------------------------------------------===// | ||||
// | // | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | // See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
// | // | ||||
// RDF-based copy propagation. | // RDF-based copy propagation. | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
#include "RDFCopy.h" | #include "RDFCopy.h" | ||||
#include "RDFGraph.h" | |||||
#include "RDFLiveness.h" | |||||
#include "RDFRegisters.h" | |||||
#include "llvm/CodeGen/MachineDominators.h" | #include "llvm/CodeGen/MachineDominators.h" | ||||
#include "llvm/CodeGen/MachineInstr.h" | #include "llvm/CodeGen/MachineInstr.h" | ||||
#include "llvm/CodeGen/MachineOperand.h" | #include "llvm/CodeGen/MachineOperand.h" | ||||
#include "llvm/CodeGen/MachineRegisterInfo.h" | #include "llvm/CodeGen/MachineRegisterInfo.h" | ||||
#include "llvm/CodeGen/RDFGraph.h" | |||||
#include "llvm/CodeGen/RDFLiveness.h" | |||||
#include "llvm/CodeGen/RDFRegisters.h" | |||||
#include "llvm/CodeGen/TargetOpcodes.h" | #include "llvm/CodeGen/TargetOpcodes.h" | ||||
#include "llvm/CodeGen/TargetRegisterInfo.h" | #include "llvm/CodeGen/TargetRegisterInfo.h" | ||||
#include "llvm/MC/MCRegisterInfo.h" | #include "llvm/MC/MCRegisterInfo.h" | ||||
#include "llvm/Support/CommandLine.h" | #include "llvm/Support/CommandLine.h" | ||||
#include "llvm/Support/Debug.h" | #include "llvm/Support/Debug.h" | ||||
#include "llvm/Support/ErrorHandling.h" | #include "llvm/Support/ErrorHandling.h" | ||||
#include "llvm/Support/raw_ostream.h" | #include "llvm/Support/raw_ostream.h" | ||||
#include <cassert> | #include <cassert> | ||||
▲ Show 20 Lines • Show All 185 Lines • Show Last 20 Lines |