tgsi: include more of the register info in debug dumps

This commit is contained in:
Keith Whitwell 2008-02-13 10:02:59 +00:00
parent e922adbe1d
commit 7f342a20d2

View file

@ -44,6 +44,9 @@ static void
_print_reg(
struct x86_reg reg )
{
if (reg.mod != mod_REG)
debug_printf( "[" );
switch( reg.file ) {
case file_REG32:
switch( reg.idx ) {
@ -83,6 +86,13 @@ _print_reg(
assert( 0 );
break;
}
if (reg.mod == mod_DISP8 ||
reg.mod == mod_DISP32)
debug_printf("+%d", reg.disp);
if (reg.mod != mod_REG)
debug_printf( "]" );
}
static void