@@ -320,7 +320,7 @@ private void setR2(int toc) throws Exception {
320320 //ELFs generally have one section entirely of imports
321321 private void createImportStubsFromMemoryBlock (MemoryBlock block ) throws Exception {
322322 final long stub_count = block .getSize () / Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ();
323- println ("Entries = " +stub_count +" size=" +block .getSize ()+" struc_size =" +Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ());
323+ println ("Entries = " +stub_count +" size=" +block .getSize ()+" struct_size =" +Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ());
324324 if (stub_count == 0 ) {
325325 println ("No imports" );
326326 return ;
@@ -337,7 +337,7 @@ private void createImportStubsFromModuleInfo(Address module_info_addr) throws Ex
337337 final long stub_size = stub_end - stub_top ;
338338 final long stub_count = stub_size / Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ();
339339
340- println ("Entries = " +stub_count +" size=" +stub_size +" struc_size =" +Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ());
340+ println ("Entries = " +stub_count +" size=" +stub_size +" struct_size =" +Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ());
341341
342342 if (stub_count == 0 ) {
343343 //Can happen, eg libL10n
@@ -354,7 +354,7 @@ private void createImportStubsFromPrxInfo(Address prxInfo_addr) throws Exception
354354 final long stub_end = sys_process_prx_info_t .getComponent (7 ).getInt (0 );
355355 final long stub_size = stub_end - stub_top ;
356356 final long stub_count = stub_size / Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ();
357- println ("Entries = " +stub_count +" size=" +stub_size +" struc_size =" +Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ());
357+ println ("Entries = " +stub_count +" size=" +stub_size +" struct_size =" +Ps3DataStructureTypes .sceLibStubPpu32DataType .getLength ());
358358 if (stub_count == 0 ) {
359359 println ("No imports" );
360360 return ;
@@ -482,7 +482,7 @@ private void createImportStubs(Address start_addr, int stub_count) throws Except
482482 final String fnid_name = FnidUtils .getNameForFnid (this , libname , fnid );
483483
484484 // Create nid label
485- createLabel (nidArray .getComponent (j ).getAddress (), "VNID_ " +fnid_name , true );
485+ createLabel (nidArray .getComponent (j ).getAddress (), "FNID_ " +fnid_name , true );
486486
487487 // Create var label
488488 final Address varAddress = currentAddress .getNewAddress (funcAddrArray .getComponent (j ).getInt (0 ));
@@ -505,7 +505,7 @@ private void createImportStubs(Address start_addr, int stub_count) throws Except
505505
506506 private void createExportEntsFromMemoryBlock (MemoryBlock block ) throws Exception {
507507 final long ent_count = block .getSize () / Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ();
508- println ("Entries = " +ent_count +" size=" +block .getSize ()+" struc_size =" +Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ());
508+ println ("Entries = " +ent_count +" size=" +block .getSize ()+" struct_size =" +Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ());
509509 if (ent_count == 0 ) {
510510 println ("No exports" );
511511 return ;
@@ -521,7 +521,7 @@ private void createExportEntsFromModuleInfo(Address module_info_addr) throws Exc
521521 final long ent_size = ent_end - ent_top ;
522522 final long ent_count = ent_size / Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ();
523523
524- println ("Entries = " +ent_count +" size=" +ent_size +" struc_size =" +Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ());
524+ println ("Entries = " +ent_count +" size=" +ent_size +" struct_size =" +Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ());
525525
526526 createExportEnts (currentAddress .getNewAddress (ent_top ), (int ) ent_count );
527527 }
@@ -532,7 +532,7 @@ private void createExportEntsFromPrxInfo(Address prxInfo_addr) throws Exception
532532 final long ent_end = sys_process_prx_info_t .getComponent (5 ).getInt (0 );
533533 final long ent_size = ent_end - ent_top ;
534534 final long ent_count = ent_size / Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ();
535- println ("Entries = " +ent_count +" size=" +ent_size +" struc_size =" +Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ());
535+ println ("Entries = " +ent_count +" size=" +ent_size +" struct_size =" +Ps3DataStructureTypes .sceLibEntPpu32DataType .getLength ());
536536 if (ent_count == 0 ) {
537537 println ("No exports" );
538538 return ;
0 commit comments