dumptab.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 147 行
C
147 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include "standard.h"
#include "coderep.h"
#include "pattern.h"
#include "vergen.h"
#include "regset.h"
#include "dump.h"
extern void DumpPadString(char *,int);
extern void DumpNL();
static char * RegTab[] = {
#undef RG
#define RG( a,b,c,d,e,f ) #f
#include "rg.h"
""
};
static char * VerTab[] = {
#undef _V_
#define _V_( x ) #x
#include "v.h"
""
};
static char * GenTab[] = {
#undef _G_
#define _G_( x ) #x
#include "g.h"
#undef _R_
#define _R_( x, f ) #x
#include "r.h"
""
};
static void PrtOps( operand_types ops ) {
/*******************************************/
DumpLiteral( "," );
if( ops & R_1 ) {
DumpLiteral( "R" );
}
if( ops & M_1 ) {
DumpLiteral( "M" );
}
if( ops & U_1 ) {
DumpLiteral( "U" );
}
if( ops & C_1 ) {
DumpLiteral( "C" );
}
DumpLiteral( "," );
if( ops & R_2 ) {
DumpLiteral( "R" );
}
if( ops & M_2 ) {
DumpLiteral( "M" );
}
if( ops & U_2 ) {
DumpLiteral( "U" );
}
if( ops & C_2 ) {
DumpLiteral( "C" );
}
DumpLiteral( "," );
if( ops & R_R ) {
DumpLiteral( "R" );
}
if( ops & M_R ) {
DumpLiteral( "M" );
}
if( ops & U_R ) {
DumpLiteral( "U" );
}
if( ops & C_R ) {
DumpLiteral( "C" );
}
DumpLiteral( "," );
if( ( ops & NONE ) == NONE ) {
DumpLiteral( "NONE" );
} else if( ( ops & NONE ) == 0 ) {
DumpLiteral( "BOTH_EQ" );
} else if( ops & NE_R1 ) {
DumpLiteral( "EQ_R2" );
} else {
DumpLiteral( "EQ_R1" );
}
DumpLiteral( ")" );
}
extern void DumpGen( opcode_entry *try ) {
/********************************************/
DumpPadString( GenTab[ try->generate ], 15 );
}
extern void DumpTab( opcode_entry *try ) {
/********************************************/
unsigned verify;
PrtOps( try->op_type );
DumpLiteral( "," );
verify = try->verify;
if( verify & NOT_VOLATILE ) {
DumpLiteral( "NVI+" );
verify &= ~NOT_VOLATILE;
}
DumpPadString( VerTab[ verify ], 10 );
DumpLiteral( "," );
DumpGen( try );
DumpLiteral( "," );
DumpPadString( RegTab[ try->reg_set ], 10 );
DumpNL();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?