LLVM 20.0.0git
MSP430Subtarget.cpp
Go to the documentation of this file.
1//===-- MSP430Subtarget.cpp - MSP430 Subtarget Information ----------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the MSP430 specific subclass of TargetSubtargetInfo.
10//
11//===----------------------------------------------------------------------===//
12
13#include "MSP430Subtarget.h"
15
16using namespace llvm;
17
18#define DEBUG_TYPE "msp430-subtarget"
19
22 cl::desc("Hardware multiplier use mode for MSP430"),
26 "Do not use hardware multiplier"),
28 "Use 16-bit hardware multiplier"),
30 "Use 32-bit hardware multiplier"),
32 "Use F5 series hardware multiplier")));
33
34#define GET_SUBTARGETINFO_TARGET_DESC
35#define GET_SUBTARGETINFO_CTOR
36#include "MSP430GenSubtargetInfo.inc"
37
38void MSP430Subtarget::anchor() { }
39
42 ExtendedInsts = false;
43 HWMultMode = NoHWMult;
44
45 StringRef CPUName = CPU;
46 if (CPUName.empty())
47 CPUName = "msp430";
48
49 ParseSubtargetFeatures(CPUName, /*TuneCPU*/ CPUName, FS);
50
52 HWMultMode = HWMultModeOption;
53
54 return *this;
55}
56
57MSP430Subtarget::MSP430Subtarget(const Triple &TT, const std::string &CPU,
58 const std::string &FS, const TargetMachine &TM)
59 : MSP430GenSubtargetInfo(TT, CPU, /*TuneCPU*/ CPU, FS),
60 InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this),
61 FrameLowering(*this) {}
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
Definition: CommandLine.h:686
static cl::opt< MSP430Subtarget::HWMultEnum > HWMultModeOption("mhwmult", cl::Hidden, cl::desc("Hardware multiplier use mode for MSP430"), cl::init(MSP430Subtarget::NoHWMult), cl::values(clEnumValN(MSP430Subtarget::NoHWMult, "none", "Do not use hardware multiplier"), clEnumValN(MSP430Subtarget::HWMult16, "16bit", "Use 16-bit hardware multiplier"), clEnumValN(MSP430Subtarget::HWMult32, "32bit", "Use 32-bit hardware multiplier"), clEnumValN(MSP430Subtarget::HWMultF5, "f5series", "Use F5 series hardware multiplier")))
MSP430Subtarget & initializeSubtargetDependencies(StringRef CPU, StringRef FS)
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
ParseSubtargetFeatures - Parses features string setting specified subtarget options.
MSP430Subtarget(const Triple &TT, const std::string &CPU, const std::string &FS, const TargetMachine &TM)
This constructor initializes the data members to match that of the specified triple.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:147
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:77
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
Definition: CommandLine.h:711
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:443
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18