mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5272 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			55 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===- X86InstrInfo.cpp - X86 Instruction Information -----------*- C++ -*-===//
 | 
						|
//
 | 
						|
// This file contains the X86 implementation of the TargetInstrInfo class.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "X86InstrInfo.h"
 | 
						|
#include "X86.h"
 | 
						|
#include "llvm/CodeGen/MachineInstr.h"
 | 
						|
 | 
						|
#define I(ENUM, NAME, BASEOPCODE, FLAGS, TSFLAGS, IMPDEFS, IMPUSES)
 | 
						|
#define IMPREGSLIST(NAME, ...) \
 | 
						|
  static const unsigned NAME[] = { __VA_ARGS__ };
 | 
						|
#include "X86InstrInfo.def"
 | 
						|
 | 
						|
 | 
						|
// X86Insts - Turn the InstrInfo.def file into a bunch of instruction
 | 
						|
// descriptors
 | 
						|
//
 | 
						|
static const TargetInstrDescriptor X86Insts[] = {
 | 
						|
#define I(ENUM, NAME, BASEOPCODE, FLAGS, TSFLAGS, IMPUSES, IMPDEFS)   \
 | 
						|
             { NAME,                    \
 | 
						|
               -1, /* Always vararg */  \
 | 
						|
               ((TSFLAGS) & X86II::Void) ? -1 : 0,  /* Result is in 0 */ \
 | 
						|
               0,                                   /* maxImmedConst field */\
 | 
						|
               false,                               /* immedIsSignExtended */\
 | 
						|
               0,                                   /* numDelaySlots */\
 | 
						|
               0,                                   /* latency */\
 | 
						|
               0,                                   /* schedClass */\
 | 
						|
               FLAGS,                               /* Flags */\
 | 
						|
               TSFLAGS,                             /* TSFlags */\
 | 
						|
               IMPUSES,                             /* ImplicitUses */\
 | 
						|
               IMPDEFS },                           /* ImplicitDefs */
 | 
						|
#include "X86InstrInfo.def"
 | 
						|
};
 | 
						|
 | 
						|
X86InstrInfo::X86InstrInfo()
 | 
						|
  : TargetInstrInfo(X86Insts, sizeof(X86Insts)/sizeof(X86Insts[0]), 0) {
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
static unsigned char BaseOpcodes[] = {
 | 
						|
#define I(ENUM, NAME, BASEOPCODE, FLAGS, TSFLAGS, IMPDEFS, IMPUSES) BASEOPCODE,
 | 
						|
#include "X86InstrInfo.def"
 | 
						|
};
 | 
						|
 | 
						|
// getBaseOpcodeFor - This function returns the "base" X86 opcode for the
 | 
						|
// specified opcode number.
 | 
						|
//
 | 
						|
unsigned char X86InstrInfo::getBaseOpcodeFor(unsigned Opcode) const {
 | 
						|
  assert(Opcode < sizeof(BaseOpcodes)/sizeof(BaseOpcodes[0]) &&
 | 
						|
         "Opcode out of range!");
 | 
						|
  return BaseOpcodes[Opcode];
 | 
						|
}
 |