mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 23:05:31 +00:00
e035f65b16
Mips shift instructions DSLL, DSRL and DSRA are transformed into DSLL32, DSRL32 and DSRA32 respectively if the shift amount is between 32 and 63 Here is a description of DSLL: Purpose: Doubleword Shift Left Logical Plus 32 To execute a left-shift of a doubleword by a fixed amount--32 to 63 bits Description: GPR[rd] <- GPR[rt] << (sa+32) The 64-bit doubleword contents of GPR rt are shifted left, inserting zeros into the emptied bits; the result is placed in GPR rd. The bit-shift amount in the range 0 to 31 is specified by sa. This patch implements the direct object output of these instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160277 91177308-0d34-0410-b5e6-96231b3b80d8
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
//===-- MipsMCInstLower.h - Lower MachineInstr to MCInst -------*- C++ -*--===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MIPSMCINSTLOWER_H
|
|
#define MIPSMCINSTLOWER_H
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/CodeGen/MachineOperand.h"
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
namespace llvm {
|
|
class MCContext;
|
|
class MCInst;
|
|
class MCOperand;
|
|
class MachineInstr;
|
|
class MachineFunction;
|
|
class Mangler;
|
|
class MipsAsmPrinter;
|
|
|
|
/// MipsMCInstLower - This class is used to lower an MachineInstr into an
|
|
// MCInst.
|
|
class LLVM_LIBRARY_VISIBILITY MipsMCInstLower {
|
|
typedef MachineOperand::MachineOperandType MachineOperandType;
|
|
MCContext *Ctx;
|
|
Mangler *Mang;
|
|
MipsAsmPrinter &AsmPrinter;
|
|
public:
|
|
MipsMCInstLower(MipsAsmPrinter &asmprinter);
|
|
void Initialize(Mangler *mang, MCContext *C);
|
|
void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
|
void LowerLargeShift(const MachineInstr *MI, MCInst &Inst, int64_t Shift);
|
|
|
|
private:
|
|
MCOperand LowerSymbolOperand(const MachineOperand &MO,
|
|
MachineOperandType MOTy, unsigned Offset) const;
|
|
MCOperand LowerOperand(const MachineOperand& MO, unsigned offset = 0) const;
|
|
};
|
|
}
|
|
|
|
#endif
|