mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00

- Each target asm parser now creates its own MCSubtatgetInfo (if needed). - Changed AssemblerPredicate to take subtarget features which tablegen uses to generate asm matcher subtarget feature queries. e.g. "ModeThumb,FeatureThumb2" is translated to "(Bits & ModeThumb) != 0 && (Bits & FeatureThumb2) != 0". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134678 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
923 B
C++
30 lines
923 B
C++
//===- XCoreSubtarget.cpp - XCore Subtarget Information -----------*- C++ -*-=//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the XCore specific subclass of TargetSubtargetInfo.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "XCoreSubtarget.h"
|
|
#include "XCore.h"
|
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
#define GET_SUBTARGETINFO_MC_DESC
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
#include "XCoreGenSubtargetInfo.inc"
|
|
|
|
using namespace llvm;
|
|
|
|
XCoreSubtarget::XCoreSubtarget(const std::string &TT,
|
|
const std::string &CPU, const std::string &FS)
|
|
: XCoreGenSubtargetInfo(TT, CPU, FS)
|
|
{
|
|
}
|