blob: 6a60a66608aafdaa9823acc16f3b4fa9af3910d9 [file] [log] [blame]
Brian Gaekee785e532004-02-25 19:28:19 +00001//===- SparcV8InstrInfo.cpp - SparcV8 Instruction Information ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the SparcV8 implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SparcV8InstrInfo.h"
Chris Lattner1d6dc972004-07-25 06:19:04 +000015#include "SparcV8.h"
Brian Gaekee785e532004-02-25 19:28:19 +000016#include "llvm/CodeGen/MachineInstrBuilder.h"
17#include "SparcV8GenInstrInfo.inc"
Chris Lattner1ddf4752004-02-29 05:59:33 +000018using namespace llvm;
Brian Gaekee785e532004-02-25 19:28:19 +000019
20SparcV8InstrInfo::SparcV8InstrInfo()
Chris Lattnerdce363d2004-02-29 06:31:44 +000021 : TargetInstrInfo(SparcV8Insts, sizeof(SparcV8Insts)/sizeof(SparcV8Insts[0])){
Brian Gaekee785e532004-02-25 19:28:19 +000022}
23
Brian Gaeke4658ba12004-12-11 05:19:03 +000024static bool isZeroImmed (const MachineOperand &op) {
25 return (op.isImmediate() && op.getImmedValue() == 0);
26}
27
Chris Lattner1d6dc972004-07-25 06:19:04 +000028/// Return true if the instruction is a register to register move and
29/// leave the source and dest operands in the passed parameters.
30///
31bool SparcV8InstrInfo::isMoveInstr(const MachineInstr &MI,
32 unsigned &SrcReg, unsigned &DstReg) const {
Brian Gaeke4658ba12004-12-11 05:19:03 +000033 // We look for 3 kinds of patterns here:
34 // or with G0 or 0
35 // add with G0 or 0
36 // fmovs or FpMOVD (pseudo double move).
37 if (MI.getOpcode() == V8::ORrr || MI.getOpcode() == V8::ADDrr) {
38 if (MI.getOperand(1).getReg() == V8::G0) {
Chris Lattner1d6dc972004-07-25 06:19:04 +000039 DstReg = MI.getOperand(0).getReg();
40 SrcReg = MI.getOperand(2).getReg();
Brian Gaeke9b8ed0e2004-09-29 03:28:15 +000041 return true;
Brian Gaeke4658ba12004-12-11 05:19:03 +000042 } else if (MI.getOperand (2).getReg() == V8::G0) {
43 DstReg = MI.getOperand(0).getReg();
44 SrcReg = MI.getOperand(1).getReg();
45 return true;
46 }
47 } else if (MI.getOpcode() == V8::ORri || MI.getOpcode() == V8::ADDri) {
48 if (isZeroImmed (MI.getOperand (1))) {
49 DstReg = MI.getOperand(0).getReg();
50 SrcReg = MI.getOperand(2).getReg();
51 return true;
52 } else if (isZeroImmed (MI.getOperand (2))) {
53 DstReg = MI.getOperand(0).getReg();
54 SrcReg = MI.getOperand(1).getReg();
55 return true;
Chris Lattner1d6dc972004-07-25 06:19:04 +000056 }
Brian Gaeke9ed92042004-09-29 16:45:47 +000057 } else if (MI.getOpcode() == V8::FMOVS || MI.getOpcode() == V8::FpMOVD) {
Chris Lattner1d6dc972004-07-25 06:19:04 +000058 SrcReg = MI.getOperand(1).getReg();
59 DstReg = MI.getOperand(0).getReg();
60 return true;
61 }
62 return false;
63}