mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	code.  It used to #include the enhanced disassembly
information for the targets it supported straight
out of lib/Target/{X86,ARM,...} but now it uses a
new interface provided by MCDisassembler, and (so
far) implemented by X86 and ARM.
Also removed hacky #define-controlled initialization
of targets in edis.  If clients only want edis to
initialize a limited set of targets, they can set
--enable-targets on the configure command line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101179 91177308-0d34-0410-b5e6-96231b3b80d8
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			781 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			781 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- llvm/MC/EDInstInfo.h - EDis instruction info ------------*- C++ -*-===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| #ifndef EDINSTINFO_H
 | |
| #define EDINSTINFO_H
 | |
| 
 | |
| #include "llvm/System/DataTypes.h"
 | |
| 
 | |
| namespace llvm {
 | |
|   
 | |
| #define EDIS_MAX_OPERANDS 13
 | |
| #define EDIS_MAX_SYNTAXES 2
 | |
| 
 | |
| struct EDInstInfo {
 | |
|   uint8_t       instructionType;
 | |
|   uint8_t       numOperands;
 | |
|   uint8_t       operandTypes[EDIS_MAX_OPERANDS];
 | |
|   uint8_t       operandFlags[EDIS_MAX_OPERANDS];
 | |
|   const char    operandOrders[EDIS_MAX_SYNTAXES][EDIS_MAX_OPERANDS];
 | |
| };
 | |
|   
 | |
| } // namespace llvm
 | |
| 
 | |
| #endif
 |