@@ -148,7 +148,7 @@ where
148
148
149
149
#[ repr( C ) ]
150
150
#[ derive( AlignedBytesBorrow , Debug ) ]
151
- pub struct Rv32JalLuiRecord {
151
+ pub struct Rv32JalLuiCoreRecord {
152
152
pub imm : u32 ,
153
153
pub rd_data : [ u8 ; RV32_REGISTER_NUM_LIMBS ] ,
154
154
pub is_jal : bool ,
@@ -173,7 +173,7 @@ where
173
173
for < ' buf > RA : RecordArena <
174
174
' buf ,
175
175
EmptyAdapterCoreLayout < F , A > ,
176
- ( A :: RecordMut < ' buf > , & ' buf mut Rv32JalLuiRecord ) ,
176
+ ( A :: RecordMut < ' buf > , & ' buf mut Rv32JalLuiCoreRecord ) ,
177
177
> ,
178
178
{
179
179
fn get_opcode_name ( & self , opcode : usize ) -> String {
@@ -220,7 +220,7 @@ where
220
220
fn fill_trace_row ( & self , mem_helper : & MemoryAuxColsFactory < F > , row_slice : & mut [ F ] ) {
221
221
let ( adapter_row, mut core_row) = unsafe { row_slice. split_at_mut_unchecked ( A :: WIDTH ) } ;
222
222
self . adapter . fill_trace_row ( mem_helper, adapter_row) ;
223
- let record: & Rv32JalLuiRecord = unsafe { get_record_from_slice ( & mut core_row, ( ) ) } ;
223
+ let record: & Rv32JalLuiCoreRecord = unsafe { get_record_from_slice ( & mut core_row, ( ) ) } ;
224
224
let core_row: & mut Rv32JalLuiCoreCols < F > = core_row. borrow_mut ( ) ;
225
225
226
226
for pair in record. rd_data . chunks_exact ( 2 ) {
0 commit comments