mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	A side-effect of this change is asm printer is now using unified assembly. There are some minor clean ups and fixes as well. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75359 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===- Thumb2InstrInfo.cpp - Thumb-2 Instruction 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 contains the Thumb-2 implementation of the TargetInstrInfo class.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "ARMInstrInfo.h"
 | 
						|
#include "ARM.h"
 | 
						|
#include "ARMGenInstrInfo.inc"
 | 
						|
#include "ARMMachineFunctionInfo.h"
 | 
						|
#include "llvm/CodeGen/MachineFrameInfo.h"
 | 
						|
#include "llvm/CodeGen/MachineInstrBuilder.h"
 | 
						|
#include "llvm/ADT/SmallVector.h"
 | 
						|
#include "Thumb2InstrInfo.h"
 | 
						|
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
Thumb2InstrInfo::Thumb2InstrInfo(const ARMSubtarget &STI)
 | 
						|
  : ARMBaseInstrInfo(STI), RI(*this, STI) {
 | 
						|
}
 | 
						|
 | 
						|
unsigned Thumb2InstrInfo::getUnindexedOpcode(unsigned Opc) const {
 | 
						|
  // FIXME
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
unsigned Thumb2InstrInfo::getOpcode(ARMII::Op Op) const {
 | 
						|
  switch (Op) {
 | 
						|
  case ARMII::ADDri: return ARM::t2ADDri;
 | 
						|
  case ARMII::ADDrs: return ARM::t2ADDrs;
 | 
						|
  case ARMII::ADDrr: return ARM::t2ADDrr;
 | 
						|
  case ARMII::B: return ARM::t2B;
 | 
						|
  case ARMII::Bcc: return ARM::t2Bcc;
 | 
						|
  case ARMII::BR_JTr: return ARM::t2BR_JTr;
 | 
						|
  case ARMII::BR_JTm: return ARM::t2BR_JTm;
 | 
						|
  case ARMII::BR_JTadd: return ARM::t2BR_JTadd;
 | 
						|
  case ARMII::BX_RET: return ARM::tBX_RET;
 | 
						|
  case ARMII::FCPYS: return ARM::FCPYS;
 | 
						|
  case ARMII::FCPYD: return ARM::FCPYD;
 | 
						|
  case ARMII::FLDD: return ARM::FLDD;
 | 
						|
  case ARMII::FLDS: return ARM::FLDS;
 | 
						|
  case ARMII::FSTD: return ARM::FSTD;
 | 
						|
  case ARMII::FSTS: return ARM::FSTS;
 | 
						|
  case ARMII::LDR: return ARM::LDR;   // FIXME
 | 
						|
  case ARMII::MOVr: return ARM::t2MOVr;
 | 
						|
  case ARMII::STR: return ARM::STR;   // FIXME
 | 
						|
  case ARMII::SUBri: return ARM::t2SUBri;
 | 
						|
  case ARMII::SUBrs: return ARM::t2SUBrs;
 | 
						|
  case ARMII::SUBrr: return ARM::t2SUBrr;
 | 
						|
  case ARMII::VMOVD: return ARM::VMOVD;
 | 
						|
  case ARMII::VMOVQ: return ARM::VMOVQ;
 | 
						|
  default:
 | 
						|
    break;
 | 
						|
  }
 | 
						|
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
bool
 | 
						|
Thumb2InstrInfo::BlockHasNoFallThrough(const MachineBasicBlock &MBB) const {
 | 
						|
  if (MBB.empty()) return false;
 | 
						|
 | 
						|
  // FIXME
 | 
						|
  switch (MBB.back().getOpcode()) {
 | 
						|
  case ARM::t2LDM_RET:
 | 
						|
  case ARM::t2B:        // Uncond branch.
 | 
						|
  case ARM::t2BR_JTr:   // Jumptable branch.
 | 
						|
  case ARM::t2BR_JTm:   // Jumptable branch through mem.
 | 
						|
  case ARM::t2BR_JTadd: // Jumptable branch add to pc.
 | 
						|
    return true;
 | 
						|
  case ARM::tBX_RET:
 | 
						|
  case ARM::tBX_RET_vararg:
 | 
						|
  case ARM::tPOP_RET:
 | 
						|
  case ARM::tB:
 | 
						|
  case ARM::tBR_JTr:
 | 
						|
    return true;
 | 
						|
  default:
 | 
						|
    break;
 | 
						|
  }
 | 
						|
 | 
						|
  return false;
 | 
						|
}
 |