forked from OSchip/llvm-project
[NFC] Move DEBUG_TYPE below includes in Hexagon
llvm-svn: 307947
This commit is contained in:
parent
6597c28d76
commit
34327d28fd
|
@ -7,8 +7,6 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hexbit"
|
||||
|
||||
#include "HexagonBitTracker.h"
|
||||
#include "HexagonTargetMachine.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
|
@ -42,6 +40,8 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#define DEBUG_TYPE "hexbit"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<bool> PreserveTiedOps("hexbit-keep-tied", cl::Hidden,
|
||||
|
|
|
@ -59,8 +59,6 @@
|
|||
// J2_jump <BB#6>, %PC<imp-def,dead>
|
||||
// Successors according to CFG: BB#6 BB#3
|
||||
|
||||
#define DEBUG_TYPE "hexagon-eif"
|
||||
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonInstrInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
|
@ -90,6 +88,8 @@
|
|||
#include <cassert>
|
||||
#include <iterator>
|
||||
|
||||
#define DEBUG_TYPE "hexagon-eif"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
namespace llvm {
|
||||
|
|
|
@ -86,8 +86,6 @@
|
|||
// however, is that finding the locations where the implicit uses need
|
||||
// to be added, and updating the live ranges will be more involved.
|
||||
|
||||
#define DEBUG_TYPE "expand-condsets"
|
||||
|
||||
#include "HexagonInstrInfo.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SetVector.h"
|
||||
|
@ -116,6 +114,8 @@
|
|||
#include <set>
|
||||
#include <utility>
|
||||
|
||||
#define DEBUG_TYPE "expand-condsets"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<unsigned> OptTfrLimit("expand-condsets-tfr-limit",
|
||||
|
|
|
@ -8,8 +8,6 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hexagon-pei"
|
||||
|
||||
#include "HexagonFrameLowering.h"
|
||||
#include "HexagonBlockRanges.h"
|
||||
#include "HexagonInstrInfo.h"
|
||||
|
@ -63,6 +61,8 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#define DEBUG_TYPE "hexagon-pei"
|
||||
|
||||
// Hexagon stack frame layout as defined by the ABI:
|
||||
//
|
||||
// Incoming arguments
|
||||
|
|
|
@ -7,8 +7,6 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hexinsert"
|
||||
|
||||
#include "BitTracker.h"
|
||||
#include "HexagonBitTracker.h"
|
||||
#include "HexagonInstrInfo.h"
|
||||
|
@ -44,6 +42,8 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#define DEBUG_TYPE "hexinsert"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
static cl::opt<unsigned> VRegIndexCutoff("insert-vreg-cutoff", cl::init(~0U),
|
||||
|
|
|
@ -7,8 +7,6 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "gen-pred"
|
||||
|
||||
#include "HexagonInstrInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
#include "llvm/ADT/SetVector.h"
|
||||
|
@ -35,6 +33,8 @@
|
|||
#include <set>
|
||||
#include <utility>
|
||||
|
||||
#define DEBUG_TYPE "gen-pred"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
namespace llvm {
|
||||
|
|
|
@ -10,8 +10,6 @@
|
|||
// load/store instructions.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "opt-addr-mode"
|
||||
|
||||
#include "HexagonInstrInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
#include "MCTargetDesc/HexagonBaseInfo.h"
|
||||
|
@ -36,6 +34,8 @@
|
|||
#include <cassert>
|
||||
#include <cstdint>
|
||||
|
||||
#define DEBUG_TYPE "opt-addr-mode"
|
||||
|
||||
static cl::opt<int> CodeGrowthLimit("hexagon-amode-growth-limit",
|
||||
cl::Hidden, cl::init(0), cl::desc("Code growth limit for address mode "
|
||||
"optimization"));
|
||||
|
|
Loading…
Reference in New Issue