to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
50 lines
2.0 KiB
C++
50 lines
2.0 KiB
C++
//= MSP430InstPrinter.h - Convert MSP430 MCInst to assembly syntax -*- C++ -*-//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This class prints a MSP430 MCInst to a .s file.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIB_TARGET_MSP430_INSTPRINTER_MSP430INSTPRINTER_H
|
|
#define LLVM_LIB_TARGET_MSP430_INSTPRINTER_MSP430INSTPRINTER_H
|
|
|
|
#include "llvm/MC/MCInstPrinter.h"
|
|
|
|
namespace llvm {
|
|
class MSP430InstPrinter : public MCInstPrinter {
|
|
public:
|
|
MSP430InstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
|
|
const MCRegisterInfo &MRI)
|
|
: MCInstPrinter(MAI, MII, MRI) {}
|
|
|
|
void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot,
|
|
const MCSubtargetInfo &STI) override;
|
|
|
|
// Autogenerated by tblgen.
|
|
void printInstruction(const MCInst *MI, raw_ostream &O);
|
|
bool printAliasInstr(const MCInst *MI, raw_ostream &O);
|
|
void printCustomAliasOperand(const MCInst *MI, unsigned OpIdx,
|
|
unsigned PrintMethodIdx, raw_ostream &O);
|
|
static const char *getRegisterName(unsigned RegNo);
|
|
|
|
private:
|
|
void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O,
|
|
const char *Modifier = nullptr);
|
|
void printPCRelImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
|
|
void printSrcMemOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O,
|
|
const char *Modifier = nullptr);
|
|
void printIndRegOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
|
|
void printPostIndRegOperand(const MCInst *MI, unsigned OpNo,
|
|
raw_ostream &O);
|
|
void printCCOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|