@@ -84,7 +84,10 @@ static void MatchCallPattern(uword* pc) {
8484static void MatchDataLoadFromPool (uword* pc, intptr_t * data_index) {
8585 // movq RBX, [PP + offset]
8686 static int16_t load_data_disp8[] = {
87- 0x49 , 0x8b , 0x5f , -1 , //
87+ 0x49 ,
88+ 0x8b ,
89+ 0x5f ,
90+ -1 , //
8891 };
8992 static int16_t load_data_disp32[] = {
9093 0x49 , 0x8b , 0x9f , -1 , -1 , -1 , -1 ,
@@ -334,7 +337,10 @@ class SwitchableCall : public SwitchableCallBase {
334337
335338 // movq CODE_REG, [PP + offset]
336339 static int16_t load_code_disp8[] = {
337- 0x4d , 0x8b , 0x67 , -1 , //
340+ 0x4d ,
341+ 0x8b ,
342+ 0x67 ,
343+ -1 , //
338344 };
339345 static int16_t load_code_disp32[] = {
340346 0x4d , 0x8b , 0xa7 , -1 , -1 , -1 , -1 ,
@@ -374,7 +380,8 @@ class BareSwitchableCall : public SwitchableCallBase {
374380
375381 // callq RCX
376382 static int16_t call_pattern[] = {
377- 0xff , 0xd1 , //
383+ 0xff ,
384+ 0xd1 , //
378385 };
379386 if (MatchesPattern (pc, call_pattern, ARRAY_SIZE (call_pattern))) {
380387 pc -= ARRAY_SIZE (call_pattern);
@@ -384,7 +391,10 @@ class BareSwitchableCall : public SwitchableCallBase {
384391
385392 // movq RBX, [PP + offset]
386393 static int16_t load_data_disp8[] = {
387- 0x49 , 0x8b , 0x5f , -1 , //
394+ 0x49 ,
395+ 0x8b ,
396+ 0x5f ,
397+ -1 , //
388398 };
389399 static int16_t load_data_disp32[] = {
390400 0x49 , 0x8b , 0x9f , -1 , -1 , -1 , -1 ,
@@ -403,7 +413,10 @@ class BareSwitchableCall : public SwitchableCallBase {
403413
404414 // movq RCX, [PP + offset]
405415 static int16_t load_code_disp8[] = {
406- 0x49 , 0x8b , 0x4f , -1 , //
416+ 0x49 ,
417+ 0x8b ,
418+ 0x4f ,
419+ -1 , //
407420 };
408421 static int16_t load_code_disp32[] = {
409422 0x49 , 0x8b , 0x8f , -1 , -1 , -1 , -1 ,
0 commit comments