@@ -1058,7 +1058,7 @@ static int ARCH_DEP( run_sie )( REGS* regs )
1058
1058
1059
1059
PROCESS_TRACE ( GUESTREGS , ip , sie_fetch_instruction );
1060
1060
EXECUTE_INSTRUCTION ( current_opcode_table , ip , GUESTREGS );
1061
- GUESTREGS -> instcount ++ ;
1061
+ regs -> instcount ++ ;
1062
1062
UPDATE_SYSBLK_INSTCOUNT ( 1 );
1063
1063
SIE_PERFMON ( SIE_PERF_EXEC_U );
1064
1064
@@ -1067,7 +1067,7 @@ static int ARCH_DEP( run_sie )( REGS* regs )
1067
1067
UNROLLED_EXECUTE ( current_opcode_table , GUESTREGS );
1068
1068
UNROLLED_EXECUTE ( current_opcode_table , GUESTREGS );
1069
1069
}
1070
- GUESTREGS -> instcount += (i * 2 );
1070
+ regs -> instcount += (i * 2 );
1071
1071
UPDATE_SYSBLK_INSTCOUNT ( (i * 2 ) );
1072
1072
1073
1073
/* Perform automatic instruction tracing if it's enabled */
@@ -1085,7 +1085,7 @@ static int ARCH_DEP( run_sie )( REGS* regs )
1085
1085
1086
1086
PROCESS_TRACE ( GUESTREGS , ip , sie_fetch_instruction );
1087
1087
EXECUTE_INSTRUCTION ( current_opcode_table , ip , GUESTREGS );
1088
- GUESTREGS -> instcount ++ ;
1088
+ regs -> instcount ++ ;
1089
1089
UPDATE_SYSBLK_INSTCOUNT ( 1 );
1090
1090
SIE_PERFMON ( SIE_PERF_EXEC_U );
1091
1091
@@ -1101,7 +1101,7 @@ static int ARCH_DEP( run_sie )( REGS* regs )
1101
1101
1102
1102
UNROLLED_EXECUTE ( current_opcode_table , GUESTREGS );
1103
1103
}
1104
- GUESTREGS -> instcount += (i * 2 );
1104
+ regs -> instcount += (i * 2 );
1105
1105
UPDATE_SYSBLK_INSTCOUNT ( (i * 2 ) );
1106
1106
1107
1107
/* Perform automatic instruction tracing if it's enabled */
@@ -1112,7 +1112,7 @@ static int ARCH_DEP( run_sie )( REGS* regs )
1112
1112
1113
1113
PROCESS_TRACE ( GUESTREGS , ip , sie_fetch_instruction );
1114
1114
TXF_EXECUTE_INSTRUCTION ( current_opcode_table , ip , GUESTREGS );
1115
- GUESTREGS -> instcount ++ ;
1115
+ regs -> instcount ++ ;
1116
1116
UPDATE_SYSBLK_INSTCOUNT ( 1 );
1117
1117
SIE_PERFMON ( SIE_PERF_EXEC_U );
1118
1118
@@ -1128,7 +1128,7 @@ static int ARCH_DEP( run_sie )( REGS* regs )
1128
1128
1129
1129
TXF_UNROLLED_EXECUTE ( current_opcode_table , GUESTREGS );
1130
1130
}
1131
- GUESTREGS -> instcount += (i * 2 );
1131
+ regs -> instcount += (i * 2 );
1132
1132
UPDATE_SYSBLK_INSTCOUNT ( (i * 2 ) );
1133
1133
1134
1134
/* Perform automatic instruction tracing if it's enabled */
0 commit comments