Skip to content

Commit a0767f9

Browse files
committed
fix some misspellings
1 parent ca6d472 commit a0767f9

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

src/core/vendor/DisassembleX86-64.mjs

+17-17
Original file line numberDiff line numberDiff line change
@@ -3525,7 +3525,7 @@ export function LoadBinCode( HexStr )
35253525

35263526
var len = HexStr.length;
35273527

3528-
for( var i = 0, el = 0, Sing = 0, int32 = 0; i < len; i += 8 )
3528+
for( var i = 0, el = 0, Sign = 0, int32 = 0; i < len; i += 8 )
35293529
{
35303530
//It is faster to read 8 hex digits at a time if possible.
35313531

@@ -3539,24 +3539,24 @@ export function LoadBinCode( HexStr )
35393539

35403540
( ( len - i ) < 8 ) && ( int32 <<= ( 8 - len - i ) << 2 );
35413541

3542-
//The variable sing corrects the unusable sing bits during the 4 byte rotation algorithm.
3542+
//The variable Sign corrects the unusable Sign bits during the 4 byte rotation algorithm.
35433543

3544-
Sing = int32;
3544+
Sign = int32;
35453545

3546-
//Remove the Sing bit value if active for when the number is changed to int32 during rotation.
3546+
//Remove the Sign bit value if active for when the number is changed to int32 during rotation.
35473547

35483548
int32 ^= int32 & 0x80000000;
35493549

3550-
//Rotate the 32 bit int so that each number is put in order in the BinCode array. Add the Sing Bit positions back though each rotation.
3550+
//Rotate the 32 bit int so that each number is put in order in the BinCode array. Add the Sign Bit positions back though each rotation.
35513551

35523552
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF );
3553-
BinCode[el++] = ( ( ( Sing >> 24 ) & 0x80 ) | int32 ) & 0xFF;
3553+
BinCode[el++] = ( ( ( Sign >> 24 ) & 0x80 ) | int32 ) & 0xFF;
35543554
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF );
3555-
BinCode[el++] = ( ( ( Sing >> 16 ) & 0x80 ) | int32 ) & 0xFF;
3555+
BinCode[el++] = ( ( ( Sign >> 16 ) & 0x80 ) | int32 ) & 0xFF;
35563556
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF );
3557-
BinCode[el++] = ( ( ( Sing >> 8 ) & 0x80 ) | int32 ) & 0xFF;
3557+
BinCode[el++] = ( ( ( Sign >> 8 ) & 0x80 ) | int32 ) & 0xFF;
35583558
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF );
3559-
BinCode[el++] = ( ( Sing & 0x80 ) | int32 ) & 0xFF;
3559+
BinCode[el++] = ( ( Sign & 0x80 ) | int32 ) & 0xFF;
35603560
}
35613561

35623562
//Remove elements past the Number of bytes in HexStr because int 32 is always 4 bytes it is possible to end in an uneven number.
@@ -3947,11 +3947,11 @@ function DecodeImmediate( type, BySize, SizeSetting )
39473947

39483948
var Pad32 = 0, Pad64 = 0;
39493949

3950-
//*Initialize the Sing value that is only set for Negative, or Positive Relative displacements.
3950+
//*Initialize the Sign value that is only set for Negative, or Positive Relative displacements.
39513951

3952-
var Sing = 0;
3952+
var Sign = 0;
39533953

3954-
//*Initialize the Sing Extend variable size as 0 Some Immediate numbers Sing extend.
3954+
//*Initialize the Sign Extend variable size as 0 Some Immediate numbers Sign extend.
39553955

39563956
var Extend = 0;
39573957

@@ -4052,9 +4052,9 @@ function DecodeImmediate( type, BySize, SizeSetting )
40524052

40534053
var Center = 2 * ( 1 << ( n << 3 ) - 2 );
40544054

4055-
//By default the Sing is Positive.
4055+
//By default the Sign is Positive.
40564056

4057-
Sing = 1;
4057+
Sign = 1;
40584058

40594059
/*-------------------------------------------------------------------------------------------------------------------------
40604060
Calculate the VSIB displacement size if it is a VSIB Disp8.
@@ -4074,9 +4074,9 @@ function DecodeImmediate( type, BySize, SizeSetting )
40744074

40754075
V32 = Center * 2 - V32;
40764076

4077-
//The Sing is negative.
4077+
//The Sign is negative.
40784078

4079-
Sing = 2;
4079+
Sign = 2;
40804080
}
40814081
}
40824082

@@ -4110,7 +4110,7 @@ function DecodeImmediate( type, BySize, SizeSetting )
41104110

41114111
//*Return the Imm.
41124112

4113-
return ( ( Sing > 0 ? ( Sing > 1 ? "-" : "+" ) : "" ) + Imm.toUpperCase() );
4113+
return ( ( Sign > 0 ? ( Sign > 1 ? "-" : "+" ) : "" ) + Imm.toUpperCase() );
41144114

41154115
}
41164116

0 commit comments

Comments
 (0)