mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
definition below all of the header #include lines, lib/Target/... edition. llvm-svn: 206842
This commit is contained in:
parent
1bfa34f57d
commit
ae889a5f85
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "AArch64AsmPrinter.h"
|
||||
#include "InstPrinter/AArch64InstPrinter.h"
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
@ -27,6 +26,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
/// Try to print a floating-point register as if it belonged to a specified
|
||||
/// register-class. For example the inline asm operand modifier "b" requires its
|
||||
/// argument to be printed as "bN".
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "aarch64-branch-fixup"
|
||||
#include "AArch64.h"
|
||||
#include "AArch64InstrInfo.h"
|
||||
#include "Utils/AArch64BaseInfo.h"
|
||||
@ -25,6 +24,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "aarch64-branch-fixup"
|
||||
|
||||
STATISTIC(NumSplit, "Number of uncond branches inserted");
|
||||
STATISTIC(NumCBrFixed, "Number of cond branches fixed");
|
||||
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "aarch64-isel"
|
||||
#include "AArch64.h"
|
||||
#include "AArch64InstrInfo.h"
|
||||
#include "AArch64Subtarget.h"
|
||||
@ -25,6 +24,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "aarch64-isel"
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
/// AArch64 specific code to select AArch64 machine instructions for
|
||||
/// SelectionDAG operations.
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "aarch64-isel"
|
||||
#include "AArch64.h"
|
||||
#include "AArch64ISelLowering.h"
|
||||
#include "AArch64MachineFunctionInfo.h"
|
||||
@ -30,6 +29,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "aarch64-isel"
|
||||
|
||||
static TargetLoweringObjectFile *createTLOF(AArch64TargetMachine &TM) {
|
||||
assert (TM.getSubtarget<AArch64Subtarget>().isTargetELF() &&
|
||||
"unknown subtarget type");
|
||||
|
@ -11,11 +11,12 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-selectiondag-info"
|
||||
#include "AArch64TargetMachine.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-selectiondag-info"
|
||||
|
||||
AArch64SelectionDAGInfo::AArch64SelectionDAGInfo(const AArch64TargetMachine &TM)
|
||||
: TargetSelectionDAGInfo(TM),
|
||||
Subtarget(&TM.getSubtarget<AArch64Subtarget>()) {
|
||||
|
@ -14,7 +14,6 @@
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "aarch64tti"
|
||||
#include "AArch64.h"
|
||||
#include "AArch64TargetMachine.h"
|
||||
#include "llvm/Analysis/TargetTransformInfo.h"
|
||||
@ -23,6 +22,8 @@
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "aarch64tti"
|
||||
|
||||
// Declare the pass initialization routine locally as target-specific passes
|
||||
// don't have a target-wide initialization entry point, and so we rely on the
|
||||
// pass constructor initialization.
|
||||
|
@ -13,8 +13,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-disassembler"
|
||||
|
||||
#include "AArch64.h"
|
||||
#include "AArch64RegisterInfo.h"
|
||||
#include "AArch64Subtarget.h"
|
||||
@ -33,6 +31,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-disassembler"
|
||||
|
||||
typedef MCDisassembler::DecodeStatus DecodeStatus;
|
||||
|
||||
namespace {
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "AArch64InstPrinter.h"
|
||||
#include "MCTargetDesc/AArch64MCTargetDesc.h"
|
||||
#include "Utils/AArch64BaseInfo.h"
|
||||
@ -24,6 +23,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
#define GET_INSTRUCTION_NAME
|
||||
#define PRINT_ALIAS_INSTR
|
||||
#include "AArch64GenAsmWriter.inc"
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
#include "MCTargetDesc/AArch64FixupKinds.h"
|
||||
#include "MCTargetDesc/AArch64MCExpr.h"
|
||||
#include "MCTargetDesc/AArch64MCTargetDesc.h"
|
||||
@ -27,6 +26,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
|
||||
namespace {
|
||||
class AArch64MCCodeEmitter : public MCCodeEmitter {
|
||||
AArch64MCCodeEmitter(const AArch64MCCodeEmitter &) LLVM_DELETED_FUNCTION;
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "aarch64mcexpr"
|
||||
#include "AArch64MCExpr.h"
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
@ -21,6 +20,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "aarch64mcexpr"
|
||||
|
||||
const AArch64MCExpr*
|
||||
AArch64MCExpr::Create(VariantKind Kind, const MCExpr *Expr,
|
||||
MCContext &Ctx) {
|
||||
|
@ -24,7 +24,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "a15-sd-optimizer"
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMBaseRegisterInfo.h"
|
||||
@ -39,6 +38,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "a15-sd-optimizer"
|
||||
|
||||
namespace {
|
||||
struct A15SDOptimizer : public MachineFunctionPass {
|
||||
static char ID;
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "ARMAsmPrinter.h"
|
||||
#include "ARM.h"
|
||||
#include "ARMConstantPoolValue.h"
|
||||
@ -55,6 +54,8 @@
|
||||
#include <cctype>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
void ARMAsmPrinter::EmitFunctionBodyEnd() {
|
||||
// Make sure to terminate any constant pools that were at the end
|
||||
// of the function.
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMConstantPoolValue.h"
|
||||
@ -40,6 +39,8 @@
|
||||
#endif
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
|
||||
STATISTIC(NumEmitted, "Number of machine instructions emitted");
|
||||
|
||||
namespace {
|
||||
|
@ -13,7 +13,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-cp-islands"
|
||||
#include "ARM.h"
|
||||
#include "ARMMachineFunctionInfo.h"
|
||||
#include "MCTargetDesc/ARMAddressingModes.h"
|
||||
@ -36,6 +35,8 @@
|
||||
#include <algorithm>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-cp-islands"
|
||||
|
||||
STATISTIC(NumCPEs, "Number of constpool entries");
|
||||
STATISTIC(NumSplit, "Number of uncond branches inserted");
|
||||
STATISTIC(NumCBrFixed, "Number of cond branches fixed");
|
||||
|
@ -14,7 +14,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-pseudo"
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMBaseRegisterInfo.h"
|
||||
@ -31,6 +30,8 @@
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-pseudo"
|
||||
|
||||
static cl::opt<bool>
|
||||
VerifyARMPseudo("verify-arm-pseudo-expand", cl::Hidden,
|
||||
cl::desc("Verify machine code after expanding ARM pseudos"));
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-isel"
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMTargetMachine.h"
|
||||
@ -37,6 +36,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-isel"
|
||||
|
||||
static cl::opt<bool>
|
||||
DisableShifterOp("disable-shifter-op", cl::Hidden,
|
||||
cl::desc("Disable isel of shifter-op"),
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-isel"
|
||||
#include "ARMISelLowering.h"
|
||||
#include "ARMCallingConv.h"
|
||||
#include "ARMConstantPoolValue.h"
|
||||
@ -50,6 +49,8 @@
|
||||
#include <utility>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-isel"
|
||||
|
||||
STATISTIC(NumTailCalls, "Number of tail calls");
|
||||
STATISTIC(NumMovwMovt, "Number of GAs materialized with movw + movt");
|
||||
STATISTIC(NumLoopByVals, "Number of loops generated for byval arguments");
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
#include "ARMJITInfo.h"
|
||||
#include "ARMConstantPoolValue.h"
|
||||
#include "ARMRelocations.h"
|
||||
@ -25,6 +24,8 @@
|
||||
#include <cstdlib>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
|
||||
void ARMJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
|
||||
report_fatal_error("ARMJITInfo::replaceMachineCodeForFunction");
|
||||
}
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-ldst-opt"
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMBaseRegisterInfo.h"
|
||||
@ -42,6 +41,8 @@
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-ldst-opt"
|
||||
|
||||
STATISTIC(NumLDMGened , "Number of ldm instructions generated");
|
||||
STATISTIC(NumSTMGened , "Number of stm instructions generated");
|
||||
STATISTIC(NumVLDMGened, "Number of vldm instructions generated");
|
||||
|
@ -8,8 +8,6 @@
|
||||
//
|
||||
//===------------------------------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "double barriers"
|
||||
|
||||
#include "ARM.h"
|
||||
#include "ARMMachineFunctionInfo.h"
|
||||
#include "ARMInstrInfo.h"
|
||||
@ -17,6 +15,8 @@
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "double barriers"
|
||||
|
||||
STATISTIC(NumDMBsRemoved, "Number of DMBs removed");
|
||||
|
||||
namespace {
|
||||
|
@ -11,12 +11,13 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-selectiondag-info"
|
||||
#include "ARMTargetMachine.h"
|
||||
#include "llvm/CodeGen/SelectionDAG.h"
|
||||
#include "llvm/IR/DerivedTypes.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-selectiondag-info"
|
||||
|
||||
ARMSelectionDAGInfo::ARMSelectionDAGInfo(const TargetMachine &TM)
|
||||
: TargetSelectionDAGInfo(TM),
|
||||
Subtarget(&TM.getSubtarget<ARMSubtarget>()) {
|
||||
|
@ -14,7 +14,6 @@
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "armtti"
|
||||
#include "ARM.h"
|
||||
#include "ARMTargetMachine.h"
|
||||
#include "llvm/Analysis/TargetTransformInfo.h"
|
||||
@ -23,6 +22,8 @@
|
||||
#include "llvm/Target/TargetLowering.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "armtti"
|
||||
|
||||
// Declare the pass initialization routine locally as target-specific passes
|
||||
// don't havve a target-wide initialization entry point, and so we rely on the
|
||||
// pass constructor initialization.
|
||||
|
@ -7,8 +7,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm-disassembler"
|
||||
|
||||
#include "llvm/MC/MCDisassembler.h"
|
||||
#include "MCTargetDesc/ARMAddressingModes.h"
|
||||
#include "MCTargetDesc/ARMBaseInfo.h"
|
||||
@ -29,6 +27,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm-disassembler"
|
||||
|
||||
typedef MCDisassembler::DecodeStatus DecodeStatus;
|
||||
|
||||
namespace {
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "ARMInstPrinter.h"
|
||||
#include "MCTargetDesc/ARMAddressingModes.h"
|
||||
#include "MCTargetDesc/ARMBaseInfo.h"
|
||||
@ -23,6 +22,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
#include "ARMGenAsmWriter.inc"
|
||||
|
||||
/// translateShiftImm - Convert shift immediate from 0-31 to 1-32 for printing.
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
#include "MCTargetDesc/ARMMCTargetDesc.h"
|
||||
#include "MCTargetDesc/ARMAddressingModes.h"
|
||||
#include "MCTargetDesc/ARMBaseInfo.h"
|
||||
@ -31,6 +30,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
|
||||
STATISTIC(MCNumEmitted, "Number of MC instructions emitted.");
|
||||
STATISTIC(MCNumCPRelocations, "Number of constant pool relocations created.");
|
||||
|
||||
|
@ -7,12 +7,13 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "armmcexpr"
|
||||
#include "ARMMCExpr.h"
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "armmcexpr"
|
||||
|
||||
const ARMMCExpr*
|
||||
ARMMCExpr::Create(VariantKind Kind, const MCExpr *Expr,
|
||||
MCContext &Ctx) {
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mlx-expansion"
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMSubtarget.h"
|
||||
@ -28,6 +27,8 @@
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mlx-expansion"
|
||||
|
||||
static cl::opt<bool>
|
||||
ForceExapnd("expand-all-fp-mlx", cl::init(false), cl::Hidden);
|
||||
static cl::opt<unsigned>
|
||||
|
@ -7,7 +7,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "thumb2-it"
|
||||
#include "ARM.h"
|
||||
#include "ARMMachineFunctionInfo.h"
|
||||
#include "Thumb2InstrInfo.h"
|
||||
@ -19,6 +18,8 @@
|
||||
#include "llvm/CodeGen/MachineInstrBundle.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "thumb2-it"
|
||||
|
||||
STATISTIC(NumITs, "Number of IT blocks inserted");
|
||||
STATISTIC(NumMovedInsts, "Number of predicated instructions moved");
|
||||
|
||||
|
@ -7,7 +7,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "t2-reduce-size"
|
||||
#include "ARM.h"
|
||||
#include "ARMBaseInstrInfo.h"
|
||||
#include "ARMSubtarget.h"
|
||||
@ -25,6 +24,8 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "t2-reduce-size"
|
||||
|
||||
STATISTIC(NumNarrows, "Number of 32-bit instrs reduced to 16-bit ones");
|
||||
STATISTIC(Num2Addrs, "Number of 32-bit instrs reduced to 2addr 16-bit ones");
|
||||
STATISTIC(NumLdSts, "Number of 32-bit load / store reduced to 16-bit ones");
|
||||
|
@ -29,7 +29,6 @@
|
||||
// FIXME: This pass may be useful for other targets too.
|
||||
// ===---------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-type-promotion"
|
||||
#include "ARM64.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
@ -46,6 +45,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-type-promotion"
|
||||
|
||||
static cl::opt<bool>
|
||||
EnableAddressTypePromotion("arm64-type-promotion", cl::Hidden,
|
||||
cl::desc("Enable the type promotion pass"),
|
||||
|
@ -33,7 +33,6 @@
|
||||
// solution.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-simd-scalar"
|
||||
#include "ARM64.h"
|
||||
#include "ARM64InstrInfo.h"
|
||||
#include "ARM64RegisterInfo.h"
|
||||
@ -48,6 +47,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-simd-scalar"
|
||||
|
||||
static cl::opt<bool>
|
||||
AdvSIMDScalar("arm64-simd-scalar",
|
||||
cl::desc("enable use of AdvSIMD scalar integer instructions"),
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "ARM64.h"
|
||||
#include "ARM64MachineFunctionInfo.h"
|
||||
#include "ARM64MCInstLower.h"
|
||||
@ -39,6 +38,8 @@
|
||||
#include "llvm/Support/TargetRegistry.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
namespace {
|
||||
|
||||
class ARM64AsmPrinter : public AsmPrinter {
|
||||
|
@ -9,7 +9,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-branch-relax"
|
||||
#include "ARM64.h"
|
||||
#include "ARM64InstrInfo.h"
|
||||
#include "ARM64MachineFunctionInfo.h"
|
||||
@ -24,6 +23,8 @@
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-branch-relax"
|
||||
|
||||
static cl::opt<bool>
|
||||
BranchRelaxation("arm64-branch-relax", cl::Hidden, cl::init(true),
|
||||
cl::desc("Relax out of range conditional branches"));
|
||||
|
@ -98,7 +98,6 @@
|
||||
// - Other ObjectWriters ignore them.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-collect-loh"
|
||||
#include "ARM64.h"
|
||||
#include "ARM64InstrInfo.h"
|
||||
#include "ARM64MachineFunctionInfo.h"
|
||||
@ -123,6 +122,8 @@
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-collect-loh"
|
||||
|
||||
static cl::opt<bool>
|
||||
PreCollectRegister("arm64-collect-loh-pre-collect-register", cl::Hidden,
|
||||
cl::desc("Restrict analysis to registers invovled"
|
||||
|
@ -17,7 +17,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-ccmp"
|
||||
#include "ARM64.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
#include "llvm/ADT/DepthFirstIterator.h"
|
||||
@ -43,6 +42,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-ccmp"
|
||||
|
||||
// Absolute maximum number of instructions allowed per speculated block.
|
||||
// This bypasses all other heuristics, so it should be set fairly high.
|
||||
static cl::opt<unsigned> BlockInstrLimit(
|
||||
|
@ -11,7 +11,6 @@
|
||||
// hardware's register renamer.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-dead-defs"
|
||||
#include "ARM64.h"
|
||||
#include "ARM64RegisterInfo.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
@ -22,6 +21,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-dead-defs"
|
||||
|
||||
STATISTIC(NumDeadDefsReplaced, "Number of dead definitions replaced");
|
||||
|
||||
namespace {
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "frame-info"
|
||||
#include "ARM64FrameLowering.h"
|
||||
#include "ARM64InstrInfo.h"
|
||||
#include "ARM64MachineFunctionInfo.h"
|
||||
@ -32,6 +31,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "frame-info"
|
||||
|
||||
static cl::opt<bool> EnableRedZone("arm64-redzone",
|
||||
cl::desc("enable use of redzone on ARM64"),
|
||||
cl::init(false), cl::Hidden);
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-isel"
|
||||
#include "ARM64TargetMachine.h"
|
||||
#include "MCTargetDesc/ARM64AddressingModes.h"
|
||||
#include "llvm/ADT/APSInt.h"
|
||||
@ -26,6 +25,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-isel"
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
/// ARM64DAGToDAGISel - ARM64 specific code to select ARM64 machine
|
||||
/// instructions for SelectionDAG operations.
|
||||
|
@ -11,8 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-lower"
|
||||
|
||||
#include "ARM64ISelLowering.h"
|
||||
#include "ARM64PerfectShuffle.h"
|
||||
#include "ARM64Subtarget.h"
|
||||
@ -36,6 +34,8 @@
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-lower"
|
||||
|
||||
STATISTIC(NumTailCalls, "Number of tail calls");
|
||||
STATISTIC(NumShiftInserts, "Number of vector shift inserts");
|
||||
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-ldst-opt"
|
||||
#include "ARM64InstrInfo.h"
|
||||
#include "MCTargetDesc/ARM64AddressingModes.h"
|
||||
#include "llvm/ADT/BitVector.h"
|
||||
@ -30,6 +29,8 @@
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-ldst-opt"
|
||||
|
||||
/// ARM64AllocLoadStoreOpt - Post-register allocation pass to combine
|
||||
/// load / store instructions to form ldp / stp instructions.
|
||||
|
||||
|
@ -21,7 +21,6 @@
|
||||
// FIXME: This pass may be useful for other targets too.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-promote-const"
|
||||
#include "ARM64.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
@ -42,6 +41,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-promote-const"
|
||||
|
||||
// Stress testing mode - disable heuristics.
|
||||
static cl::opt<bool> Stress("arm64-stress-promote-const", cl::Hidden,
|
||||
cl::desc("Promote all vector constants"));
|
||||
|
@ -11,10 +11,11 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-selectiondag-info"
|
||||
#include "ARM64TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-selectiondag-info"
|
||||
|
||||
ARM64SelectionDAGInfo::ARM64SelectionDAGInfo(const TargetMachine &TM)
|
||||
: TargetSelectionDAGInfo(TM),
|
||||
Subtarget(&TM.getSubtarget<ARM64Subtarget>()) {}
|
||||
|
@ -11,7 +11,6 @@
|
||||
// store pairs. Later we may do the same for floating point loads.
|
||||
// ===---------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-stp-suppress"
|
||||
#include "ARM64InstrInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
@ -24,6 +23,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-stp-suppress"
|
||||
|
||||
namespace {
|
||||
class ARM64StorePairSuppress : public MachineFunctionPass {
|
||||
const ARM64InstrInfo *TII;
|
||||
|
@ -14,7 +14,6 @@
|
||||
///
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64tti"
|
||||
#include "ARM64.h"
|
||||
#include "ARM64TargetMachine.h"
|
||||
#include "MCTargetDesc/ARM64AddressingModes.h"
|
||||
@ -25,6 +24,8 @@
|
||||
#include <algorithm>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64tti"
|
||||
|
||||
// Declare the pass initialization routine locally as target-specific passes
|
||||
// don't havve a target-wide initialization entry point, and so we rely on the
|
||||
// pass constructor initialization.
|
||||
|
@ -10,8 +10,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-disassembler"
|
||||
|
||||
#include "ARM64Disassembler.h"
|
||||
#include "ARM64ExternalSymbolizer.h"
|
||||
#include "ARM64Subtarget.h"
|
||||
@ -26,6 +24,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-disassembler"
|
||||
|
||||
// Pull DecodeStatus and its enum values into the global namespace.
|
||||
typedef llvm::MCDisassembler::DecodeStatus DecodeStatus;
|
||||
|
||||
|
@ -7,8 +7,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "arm64-disassembler"
|
||||
|
||||
#include "ARM64ExternalSymbolizer.h"
|
||||
#include "ARM64Subtarget.h"
|
||||
#include "MCTargetDesc/ARM64AddressingModes.h"
|
||||
@ -21,6 +19,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "arm64-disassembler"
|
||||
|
||||
static MCSymbolRefExpr::VariantKind
|
||||
getVariant(uint64_t LLVMDisassembler_VariantKind) {
|
||||
switch (LLVMDisassembler_VariantKind) {
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "ARM64InstPrinter.h"
|
||||
#include "MCTargetDesc/ARM64AddressingModes.h"
|
||||
#include "Utils/ARM64BaseInfo.h"
|
||||
@ -24,6 +23,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
#define GET_INSTRUCTION_NAME
|
||||
#define PRINT_ALIAS_INSTR
|
||||
#include "ARM64GenAsmWriter.inc"
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
#include "MCTargetDesc/ARM64AddressingModes.h"
|
||||
#include "MCTargetDesc/ARM64FixupKinds.h"
|
||||
#include "MCTargetDesc/ARM64MCExpr.h"
|
||||
@ -26,6 +25,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
|
||||
STATISTIC(MCNumEmitted, "Number of MC instructions emitted.");
|
||||
STATISTIC(MCNumFixups, "Number of MC fixups created.");
|
||||
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "aarch64symbolrefexpr"
|
||||
#include "ARM64MCExpr.h"
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
@ -24,6 +23,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "aarch64symbolrefexpr"
|
||||
|
||||
const ARM64MCExpr *ARM64MCExpr::Create(const MCExpr *Expr, VariantKind Kind,
|
||||
MCContext &Ctx) {
|
||||
return new (Ctx) ARM64MCExpr(Expr, Kind);
|
||||
|
@ -13,7 +13,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonAsmPrinter.h"
|
||||
#include "HexagonMachineFunctionInfo.h"
|
||||
@ -56,6 +55,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
static cl::opt<bool> AlignCalls(
|
||||
"hexagon-align-calls", cl::Hidden, cl::init(true),
|
||||
cl::desc("Insert falign after call instruction for Hexagon target"));
|
||||
|
@ -6,7 +6,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hexagon_cfg"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonMachineFunctionInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
@ -26,6 +25,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "hexagon_cfg"
|
||||
|
||||
namespace llvm {
|
||||
void initializeHexagonCFGOptimizerPass(PassRegistry&);
|
||||
}
|
||||
|
@ -11,8 +11,6 @@
|
||||
// to move them together. If we can move them next to each other we do so and
|
||||
// replace them with a combine instruction.
|
||||
//===----------------------------------------------------------------------===//
|
||||
#define DEBUG_TYPE "hexagon-copy-combine"
|
||||
|
||||
#include "llvm/PassSupport.h"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonInstrInfo.h"
|
||||
@ -36,6 +34,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "hexagon-copy-combine"
|
||||
|
||||
static
|
||||
cl::opt<bool> IsCombinesDisabled("disable-merge-into-combines",
|
||||
cl::Hidden, cl::ZeroOrMore,
|
||||
|
@ -26,7 +26,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hwloops"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonTargetMachine.h"
|
||||
@ -47,6 +46,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "hwloops"
|
||||
|
||||
#ifndef NDEBUG
|
||||
static cl::opt<int> HWLoopLimit("max-hwloop", cl::Hidden, cl::init(-1));
|
||||
#endif
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hexagon-isel"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonISelLowering.h"
|
||||
#include "HexagonTargetMachine.h"
|
||||
@ -23,6 +22,8 @@
|
||||
#include "llvm/Support/Debug.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "hexagon-isel"
|
||||
|
||||
static
|
||||
cl::opt<unsigned>
|
||||
MaxNumOfUsesForConstExtenders("ga-max-num-uses-for-constant-extenders",
|
||||
|
@ -12,14 +12,14 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "misched"
|
||||
|
||||
#include "HexagonMachineScheduler.h"
|
||||
#include "llvm/CodeGen/MachineLoopInfo.h"
|
||||
#include "llvm/IR/Function.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "misched"
|
||||
|
||||
/// Platform specific modifications to DAG.
|
||||
void VLIWMachineScheduler::postprocessDAG() {
|
||||
SUnit* LastSequentialCall = NULL;
|
||||
|
@ -21,7 +21,6 @@
|
||||
//
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#define DEBUG_TYPE "hexagon-nvj"
|
||||
#include "llvm/PassSupport.h"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonInstrInfo.h"
|
||||
@ -47,6 +46,8 @@
|
||||
#include <map>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "hexagon-nvj"
|
||||
|
||||
STATISTIC(NumNVJGenerated, "Number of New Value Jump Instructions created");
|
||||
|
||||
static cl::opt<int>
|
||||
|
@ -35,7 +35,6 @@
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hexagon-peephole"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonTargetMachine.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
@ -57,6 +56,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "hexagon-peephole"
|
||||
|
||||
static cl::opt<bool> DisableHexagonPeephole("disable-hexagon-peephole",
|
||||
cl::Hidden, cl::ZeroOrMore, cl::init(false),
|
||||
cl::desc("Disable Peephole Optimization"));
|
||||
|
@ -11,10 +11,11 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "hexagon-selectiondag-info"
|
||||
#include "HexagonTargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "hexagon-selectiondag-info"
|
||||
|
||||
bool llvm::flag_aligned_memcpy;
|
||||
|
||||
HexagonSelectionDAGInfo::HexagonSelectionDAGInfo(const HexagonTargetMachine
|
||||
|
@ -17,8 +17,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "xfer"
|
||||
|
||||
#include "HexagonTargetMachine.h"
|
||||
#include "HexagonMachineFunctionInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
@ -44,6 +42,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "xfer"
|
||||
|
||||
namespace {
|
||||
|
||||
class HexagonSplitConst32AndConst64 : public MachineFunctionPass {
|
||||
|
@ -26,7 +26,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "xfer"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonMachineFunctionInfo.h"
|
||||
#include "HexagonSubtarget.h"
|
||||
@ -49,6 +48,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "xfer"
|
||||
|
||||
namespace llvm {
|
||||
void initializeHexagonSplitTFRCondSetsPass(PassRegistry&);
|
||||
}
|
||||
|
@ -16,7 +16,6 @@
|
||||
// prune the dependence.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#define DEBUG_TYPE "packets"
|
||||
#include "llvm/CodeGen/DFAPacketizer.h"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonMachineFunctionInfo.h"
|
||||
@ -51,6 +50,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "packets"
|
||||
|
||||
static cl::opt<bool> PacketizeVolatiles("hexagon-packetize-volatiles",
|
||||
cl::ZeroOrMore, cl::Hidden, cl::init(true),
|
||||
cl::desc("Allow non-solo packetization of volatile memory references"));
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "HexagonAsmPrinter.h"
|
||||
#include "Hexagon.h"
|
||||
#include "HexagonInstPrinter.h"
|
||||
@ -24,6 +23,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
#define GET_INSTRUCTION_NAME
|
||||
#include "HexagonGenAsmWriter.inc"
|
||||
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "MSP430InstPrinter.h"
|
||||
#include "MSP430.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
@ -21,6 +20,8 @@
|
||||
#include "llvm/Support/FormattedStream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
|
||||
// Include the auto-generated portion of the assembly writer.
|
||||
#include "MSP430GenAsmWriter.inc"
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "MSP430.h"
|
||||
#include "InstPrinter/MSP430InstPrinter.h"
|
||||
#include "MSP430InstrInfo.h"
|
||||
@ -35,6 +34,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
namespace {
|
||||
class MSP430AsmPrinter : public AsmPrinter {
|
||||
public:
|
||||
|
@ -15,7 +15,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "msp430-branch-select"
|
||||
#include "MSP430.h"
|
||||
#include "MSP430InstrInfo.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
@ -25,6 +24,8 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "msp430-branch-select"
|
||||
|
||||
STATISTIC(NumExpanded, "Number of branches expanded to long format");
|
||||
|
||||
namespace {
|
||||
|
@ -11,8 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "msp430-lower"
|
||||
|
||||
#include "MSP430ISelLowering.h"
|
||||
#include "MSP430.h"
|
||||
#include "MSP430MachineFunctionInfo.h"
|
||||
@ -38,6 +36,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "msp430-lower"
|
||||
|
||||
typedef enum {
|
||||
NoHWMult,
|
||||
HWMultIntr,
|
||||
|
@ -11,8 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "msp430-reg-info"
|
||||
|
||||
#include "MSP430RegisterInfo.h"
|
||||
#include "MSP430.h"
|
||||
#include "MSP430MachineFunctionInfo.h"
|
||||
@ -28,6 +26,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "msp430-reg-info"
|
||||
|
||||
#define GET_REGINFO_TARGET_DESC
|
||||
#include "MSP430GenRegisterInfo.inc"
|
||||
|
||||
|
@ -11,10 +11,11 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "msp430-selectiondag-info"
|
||||
#include "MSP430TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "msp430-selectiondag-info"
|
||||
|
||||
MSP430SelectionDAGInfo::MSP430SelectionDAGInfo(const MSP430TargetMachine &TM)
|
||||
: TargetSelectionDAGInfo(TM) {
|
||||
}
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "MipsInstPrinter.h"
|
||||
#include "MCTargetDesc/MipsMCExpr.h"
|
||||
#include "MipsInstrInfo.h"
|
||||
@ -24,6 +23,8 @@
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
#define PRINT_ALIAS_INSTR
|
||||
#include "MipsGenAsmWriter.inc"
|
||||
|
||||
|
@ -12,8 +12,6 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
|
||||
#include "MipsMCCodeEmitter.h"
|
||||
#include "MCTargetDesc/MipsFixupKinds.h"
|
||||
#include "MCTargetDesc/MipsMCExpr.h"
|
||||
@ -28,6 +26,8 @@
|
||||
#include "llvm/MC/MCSubtargetInfo.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
|
||||
#define GET_INSTRMAP_INFO
|
||||
#include "MipsGenInstrInfo.inc"
|
||||
#undef GET_INSTRMAP_INFO
|
||||
|
@ -7,7 +7,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mipsmcexpr"
|
||||
#include "MipsMCExpr.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
@ -15,6 +14,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mipsmcexpr"
|
||||
|
||||
bool MipsMCExpr::isSupportedBinaryExpr(MCSymbolRefExpr::VariantKind VK,
|
||||
const MCBinaryExpr *BE) {
|
||||
switch (VK) {
|
||||
|
@ -17,8 +17,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-mc-nacl"
|
||||
|
||||
#include "Mips.h"
|
||||
#include "MipsELFStreamer.h"
|
||||
#include "MipsMCNaCl.h"
|
||||
@ -26,6 +24,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-mc-nacl"
|
||||
|
||||
namespace {
|
||||
|
||||
const unsigned IndirectBranchMaskReg = Mips::T6;
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips16-hard-float"
|
||||
#include "Mips16HardFloat.h"
|
||||
#include "llvm/IR/Module.h"
|
||||
#include "llvm/IR/Value.h"
|
||||
@ -20,6 +19,8 @@
|
||||
#include <algorithm>
|
||||
#include <string>
|
||||
|
||||
#define DEBUG_TYPE "mips16-hard-float"
|
||||
|
||||
static void inlineAsmOut
|
||||
(LLVMContext &C, StringRef AsmString, BasicBlock *BB ) {
|
||||
std::vector<llvm::Type *> AsmArgTypes;
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
#include "Mips16ISelDAGToDAG.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "Mips.h"
|
||||
@ -35,6 +34,8 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
|
||||
bool Mips16DAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
|
||||
if (!Subtarget.inMips16Mode())
|
||||
return false;
|
||||
|
@ -10,7 +10,6 @@
|
||||
// Subclass of MipsTargetLowering specialized for mips16.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#define DEBUG_TYPE "mips-lower"
|
||||
#include "Mips16ISelLowering.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "MipsRegisterInfo.h"
|
||||
@ -23,6 +22,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-lower"
|
||||
|
||||
static cl::opt<bool> DontExpandCondPseudos16(
|
||||
"mips16-dont-expand-cond-pseudo",
|
||||
cl::init(false),
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-asm-printer"
|
||||
#include "InstPrinter/MipsInstPrinter.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "MCTargetDesc/MipsMCNaCl.h"
|
||||
@ -52,6 +51,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-asm-printer"
|
||||
|
||||
MipsTargetStreamer &MipsAsmPrinter::getTargetStreamer() {
|
||||
return static_cast<MipsTargetStreamer &>(*OutStreamer.getTargetStreamer());
|
||||
}
|
||||
|
@ -12,7 +12,6 @@
|
||||
//
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
#include "Mips.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "MipsInstrInfo.h"
|
||||
@ -41,6 +40,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
|
||||
STATISTIC(NumEmitted, "Number of machine instructions emitted");
|
||||
|
||||
namespace {
|
||||
|
@ -21,8 +21,6 @@
|
||||
//
|
||||
//
|
||||
|
||||
#define DEBUG_TYPE "mips-constant-islands"
|
||||
|
||||
#include "Mips.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "Mips16InstrInfo.h"
|
||||
@ -47,6 +45,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-constant-islands"
|
||||
|
||||
STATISTIC(NumCPEs, "Number of constpool entries");
|
||||
STATISTIC(NumSplit, "Number of uncond branches inserted");
|
||||
STATISTIC(NumCBrFixed, "Number of cond branches fixed");
|
||||
|
@ -11,8 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "delay-slot-filler"
|
||||
|
||||
#include "MCTargetDesc/MipsMCNaCl.h"
|
||||
#include "Mips.h"
|
||||
#include "MipsInstrInfo.h"
|
||||
@ -33,6 +31,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "delay-slot-filler"
|
||||
|
||||
STATISTIC(FilledSlots, "Number of delay slots filled");
|
||||
STATISTIC(UsefulSlots, "Number of delay slots filled with instructions that"
|
||||
" are not NOP.");
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
#include "MipsISelDAGToDAG.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "Mips.h"
|
||||
@ -36,6 +35,8 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Instruction Selector Implementation
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -11,7 +11,6 @@
|
||||
// selection DAG.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#define DEBUG_TYPE "mips-lower"
|
||||
#include "MipsISelLowering.h"
|
||||
#include "InstPrinter/MipsInstPrinter.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
@ -39,6 +38,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-lower"
|
||||
|
||||
STATISTIC(NumTailCalls, "Number of tail calls");
|
||||
|
||||
static cl::opt<bool>
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
#include "MipsJITInfo.h"
|
||||
#include "MipsInstrInfo.h"
|
||||
#include "MipsRelocations.h"
|
||||
@ -25,6 +24,8 @@
|
||||
#include <cstdlib>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "jit"
|
||||
|
||||
|
||||
void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
|
||||
unsigned NewAddr = (intptr_t)New;
|
||||
|
@ -16,8 +16,6 @@
|
||||
// determined accurately, load branch target addresses from the GOT.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-long-branch"
|
||||
|
||||
#include "Mips.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "MipsTargetMachine.h"
|
||||
@ -33,6 +31,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-long-branch"
|
||||
|
||||
STATISTIC(LongBranches, "Number of long branches.");
|
||||
|
||||
static cl::opt<bool> SkipLongBranch(
|
||||
|
@ -12,8 +12,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "optimize-mips-pic-call"
|
||||
|
||||
#include "Mips.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "MipsMachineFunction.h"
|
||||
@ -25,6 +23,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "optimize-mips-pic-call"
|
||||
|
||||
static cl::opt<bool> LoadTargetFromGOT("mips-load-target-from-got",
|
||||
cl::init(true),
|
||||
cl::desc("Load target address from GOT"),
|
||||
|
@ -11,13 +11,14 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-os16"
|
||||
#include "MipsOs16.h"
|
||||
#include "llvm/IR/Module.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
#define DEBUG_TYPE "mips-os16"
|
||||
|
||||
|
||||
static cl::opt<std::string> Mips32FunctionMask(
|
||||
"mips32-function-mask",
|
||||
|
@ -11,8 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-reg-info"
|
||||
|
||||
#include "MipsRegisterInfo.h"
|
||||
#include "Mips.h"
|
||||
#include "MipsAnalyzeImmediate.h"
|
||||
@ -39,6 +37,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-reg-info"
|
||||
|
||||
#define GET_REGINFO_TARGET_DESC
|
||||
#include "MipsGenRegisterInfo.inc"
|
||||
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
#include "MipsSEISelDAGToDAG.h"
|
||||
#include "MCTargetDesc/MipsBaseInfo.h"
|
||||
#include "Mips.h"
|
||||
@ -35,6 +34,8 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
|
||||
bool MipsSEDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
|
||||
if (Subtarget.inMips16Mode())
|
||||
return false;
|
||||
|
@ -10,7 +10,6 @@
|
||||
// Subclass of MipsTargetLowering specialized for mips32/64.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
#include "MipsSEISelLowering.h"
|
||||
#include "MipsRegisterInfo.h"
|
||||
#include "MipsTargetMachine.h"
|
||||
@ -24,6 +23,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-isel"
|
||||
|
||||
static cl::opt<bool>
|
||||
EnableMipsTailCalls("enable-mips-tail-calls", cl::Hidden,
|
||||
cl::desc("MIPS: Enable tail calls."), cl::init(false));
|
||||
|
@ -11,10 +11,11 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-selectiondag-info"
|
||||
#include "MipsTargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-selectiondag-info"
|
||||
|
||||
MipsSelectionDAGInfo::MipsSelectionDAGInfo(const MipsTargetMachine &TM)
|
||||
: TargetSelectionDAGInfo(TM) {
|
||||
}
|
||||
|
@ -11,8 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mips-subtarget"
|
||||
|
||||
#include "MipsMachineFunction.h"
|
||||
#include "Mips.h"
|
||||
#include "MipsRegisterInfo.h"
|
||||
@ -27,6 +25,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips-subtarget"
|
||||
|
||||
#define GET_SUBTARGETINFO_TARGET_DESC
|
||||
#define GET_SUBTARGETINFO_CTOR
|
||||
#include "MipsGenSubtargetInfo.inc"
|
||||
|
@ -37,8 +37,6 @@ using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mips"
|
||||
|
||||
|
||||
|
||||
extern "C" void LLVMInitializeMipsTarget() {
|
||||
// Register the target.
|
||||
RegisterTargetMachine<MipsebTargetMachine> X(TheMipsTarget);
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "InstPrinter/NVPTXInstPrinter.h"
|
||||
#include "MCTargetDesc/NVPTXBaseInfo.h"
|
||||
#include "NVPTX.h"
|
||||
@ -25,6 +24,8 @@
|
||||
#include <cctype>
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
#include "NVPTXGenAsmWriter.inc"
|
||||
|
||||
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "nvptx-isel"
|
||||
#include "NVPTXISelDAGToDAG.h"
|
||||
#include "llvm/IR/GlobalValue.h"
|
||||
#include "llvm/IR/Instructions.h"
|
||||
@ -23,6 +22,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "nvptx-isel"
|
||||
|
||||
static cl::opt<int>
|
||||
FMAContractLevel("nvptx-fma-level", cl::ZeroOrMore, cl::Hidden,
|
||||
cl::desc("NVPTX Specific: FMA contraction (0: don't do it"
|
||||
|
@ -7,13 +7,14 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "nvptx-mcexpr"
|
||||
#include "NVPTXMCExpr.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
#include "llvm/MC/MCContext.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "nvptx-mcexpr"
|
||||
|
||||
const NVPTXFloatMCExpr*
|
||||
NVPTXFloatMCExpr::Create(VariantKind Kind, APFloat Flt, MCContext &Ctx) {
|
||||
return new (Ctx) NVPTXFloatMCExpr(Kind, Flt);
|
||||
|
@ -11,8 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "nvptx-reg-info"
|
||||
|
||||
#include "NVPTXRegisterInfo.h"
|
||||
#include "NVPTX.h"
|
||||
#include "NVPTXSubtarget.h"
|
||||
@ -25,6 +23,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "nvptx-reg-info"
|
||||
|
||||
namespace llvm {
|
||||
std::string getNVPTXRegClassName(TargetRegisterClass const *RC) {
|
||||
if (RC == &NVPTX::Float32RegsRegClass) {
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
#include "PPCInstPrinter.h"
|
||||
#include "MCTargetDesc/PPCMCTargetDesc.h"
|
||||
#include "MCTargetDesc/PPCPredicates.h"
|
||||
@ -23,6 +22,8 @@
|
||||
#include "llvm/Target/TargetOpcodes.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asm-printer"
|
||||
|
||||
// FIXME: Once the integrated assembler supports full register names, tie this
|
||||
// to the verbose-asm setting.
|
||||
static cl::opt<bool>
|
||||
|
@ -11,7 +11,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
#include "MCTargetDesc/PPCMCTargetDesc.h"
|
||||
#include "MCTargetDesc/PPCFixupKinds.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
@ -26,6 +25,8 @@
|
||||
#include "llvm/Target/TargetOpcodes.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "mccodeemitter"
|
||||
|
||||
STATISTIC(MCNumEmitted, "Number of MC instructions emitted");
|
||||
|
||||
namespace {
|
||||
|
@ -7,7 +7,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "ppcmcexpr"
|
||||
#include "PPCMCExpr.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
#include "llvm/MC/MCAssembler.h"
|
||||
@ -15,6 +14,8 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "ppcmcexpr"
|
||||
|
||||
const PPCMCExpr*
|
||||
PPCMCExpr::Create(VariantKind Kind, const MCExpr *Expr,
|
||||
bool isDarwin, MCContext &Ctx) {
|
||||
|
@ -16,7 +16,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "asmprinter"
|
||||
#include "PPC.h"
|
||||
#include "InstPrinter/PPCInstPrinter.h"
|
||||
#include "MCTargetDesc/PPCMCExpr.h"
|
||||
@ -59,6 +58,8 @@
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "asmprinter"
|
||||
|
||||
namespace {
|
||||
class PPCAsmPrinter : public AsmPrinter {
|
||||
protected:
|
||||
|
@ -15,7 +15,6 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "ppc-branch-select"
|
||||
#include "PPC.h"
|
||||
#include "MCTargetDesc/PPCPredicates.h"
|
||||
#include "PPCInstrBuilder.h"
|
||||
@ -26,6 +25,8 @@
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "ppc-branch-select"
|
||||
|
||||
STATISTIC(NumExpanded, "Number of branches expanded to long format");
|
||||
|
||||
namespace llvm {
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user