fp.isa (7380:baee640ca6a4) | fp.isa (7381:bc68c91e9814) |
---|---|
1// -*- mode:c++ -*- 2 3// Copyright (c) 2010 ARM Limited 4// All rights reserved 5// 6// The license below extends only to copyright in the software and shall 7// not be construed as granting a license to any other intellectual 8// property including but not limited to intellectual property relating --- 360 unchanged lines hidden (view full) --- 369 Op1.uw = FpOp2P1.uw; 370 ''' 371 vmov2Core2RegIop = InstObjParams("vmov", "Vmov2Core2Reg", "VfpRegRegRegOp", 372 { "code": vmov2Core2RegCode, 373 "predicate_test": predicateTest }, []) 374 header_output += VfpRegRegRegOpDeclare.subst(vmov2Core2RegIop); 375 decoder_output += VfpRegRegRegOpConstructor.subst(vmov2Core2RegIop); 376 exec_output += PredOpExecute.subst(vmov2Core2RegIop); | 1// -*- mode:c++ -*- 2 3// Copyright (c) 2010 ARM Limited 4// All rights reserved 5// 6// The license below extends only to copyright in the software and shall 7// not be construed as granting a license to any other intellectual 8// property including but not limited to intellectual property relating --- 360 unchanged lines hidden (view full) --- 369 Op1.uw = FpOp2P1.uw; 370 ''' 371 vmov2Core2RegIop = InstObjParams("vmov", "Vmov2Core2Reg", "VfpRegRegRegOp", 372 { "code": vmov2Core2RegCode, 373 "predicate_test": predicateTest }, []) 374 header_output += VfpRegRegRegOpDeclare.subst(vmov2Core2RegIop); 375 decoder_output += VfpRegRegRegOpConstructor.subst(vmov2Core2RegIop); 376 exec_output += PredOpExecute.subst(vmov2Core2RegIop); |
377}}; |
|
377 | 378 |
379let {{ 380 381 header_output = "" 382 decoder_output = "" 383 exec_output = "" 384 |
|
378 vmulSCode = ''' 379 VfpSavedState state = prepVfpFpscr(Fpscr); | 385 vmulSCode = ''' 386 VfpSavedState state = prepVfpFpscr(Fpscr); |
387 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
380 FpDest = FpOp1 * FpOp2; | 388 FpDest = FpOp1 * FpOp2; |
389 __asm__ __volatile__("" :: "m" (FpDest)); |
|
381 Fpscr = setVfpFpscr(Fpscr, state); 382 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 383 FpDest = NAN; 384 } 385 ''' 386 vmulSIop = InstObjParams("vmuls", "VmulS", "VfpRegRegRegOp", 387 { "code": vmulSCode, 388 "predicate_test": predicateTest }, []) 389 header_output += VfpRegRegRegOpDeclare.subst(vmulSIop); 390 decoder_output += VfpRegRegRegOpConstructor.subst(vmulSIop); 391 exec_output += PredOpExecute.subst(vmulSIop); 392 393 vmulDCode = ''' 394 IntDoubleUnion cOp1, cOp2, cDest; 395 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 396 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 397 VfpSavedState state = prepVfpFpscr(Fpscr); | 390 Fpscr = setVfpFpscr(Fpscr, state); 391 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 392 FpDest = NAN; 393 } 394 ''' 395 vmulSIop = InstObjParams("vmuls", "VmulS", "VfpRegRegRegOp", 396 { "code": vmulSCode, 397 "predicate_test": predicateTest }, []) 398 header_output += VfpRegRegRegOpDeclare.subst(vmulSIop); 399 decoder_output += VfpRegRegRegOpConstructor.subst(vmulSIop); 400 exec_output += PredOpExecute.subst(vmulSIop); 401 402 vmulDCode = ''' 403 IntDoubleUnion cOp1, cOp2, cDest; 404 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 405 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 406 VfpSavedState state = prepVfpFpscr(Fpscr); |
407 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
398 cDest.fp = cOp1.fp * cOp2.fp; | 408 cDest.fp = cOp1.fp * cOp2.fp; |
409 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
399 Fpscr = setVfpFpscr(Fpscr, state); 400 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 401 (isinf(cOp2.fp) && cOp1.fp == 0)) { 402 cDest.fp = NAN; 403 } 404 FpDestP0.uw = cDest.bits; 405 FpDestP1.uw = cDest.bits >> 32; 406 ''' --- 49 unchanged lines hidden (view full) --- 456 { "code": vabsDCode, 457 "predicate_test": predicateTest }, []) 458 header_output += VfpRegRegOpDeclare.subst(vabsDIop); 459 decoder_output += VfpRegRegOpConstructor.subst(vabsDIop); 460 exec_output += PredOpExecute.subst(vabsDIop); 461 462 vaddSCode = ''' 463 VfpSavedState state = prepVfpFpscr(Fpscr); | 410 Fpscr = setVfpFpscr(Fpscr, state); 411 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 412 (isinf(cOp2.fp) && cOp1.fp == 0)) { 413 cDest.fp = NAN; 414 } 415 FpDestP0.uw = cDest.bits; 416 FpDestP1.uw = cDest.bits >> 32; 417 ''' --- 49 unchanged lines hidden (view full) --- 467 { "code": vabsDCode, 468 "predicate_test": predicateTest }, []) 469 header_output += VfpRegRegOpDeclare.subst(vabsDIop); 470 decoder_output += VfpRegRegOpConstructor.subst(vabsDIop); 471 exec_output += PredOpExecute.subst(vabsDIop); 472 473 vaddSCode = ''' 474 VfpSavedState state = prepVfpFpscr(Fpscr); |
475 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
464 FpDest = FpOp1 + FpOp2; | 476 FpDest = FpOp1 + FpOp2; |
477 __asm__ __volatile__("" :: "m" (FpDest)); |
|
465 Fpscr = setVfpFpscr(Fpscr, state); 466 ''' 467 vaddSIop = InstObjParams("vadds", "VaddS", "VfpRegRegRegOp", 468 { "code": vaddSCode, 469 "predicate_test": predicateTest }, []) 470 header_output += VfpRegRegRegOpDeclare.subst(vaddSIop); 471 decoder_output += VfpRegRegRegOpConstructor.subst(vaddSIop); 472 exec_output += PredOpExecute.subst(vaddSIop); 473 474 vaddDCode = ''' 475 IntDoubleUnion cOp1, cOp2, cDest; 476 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 477 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 478 VfpSavedState state = prepVfpFpscr(Fpscr); | 478 Fpscr = setVfpFpscr(Fpscr, state); 479 ''' 480 vaddSIop = InstObjParams("vadds", "VaddS", "VfpRegRegRegOp", 481 { "code": vaddSCode, 482 "predicate_test": predicateTest }, []) 483 header_output += VfpRegRegRegOpDeclare.subst(vaddSIop); 484 decoder_output += VfpRegRegRegOpConstructor.subst(vaddSIop); 485 exec_output += PredOpExecute.subst(vaddSIop); 486 487 vaddDCode = ''' 488 IntDoubleUnion cOp1, cOp2, cDest; 489 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 490 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 491 VfpSavedState state = prepVfpFpscr(Fpscr); |
492 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
479 cDest.fp = cOp1.fp + cOp2.fp; | 493 cDest.fp = cOp1.fp + cOp2.fp; |
494 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
480 Fpscr = setVfpFpscr(Fpscr, state); 481 FpDestP0.uw = cDest.bits; 482 FpDestP1.uw = cDest.bits >> 32; 483 ''' 484 vaddDIop = InstObjParams("vaddd", "VaddD", "VfpRegRegRegOp", 485 { "code": vaddDCode, 486 "predicate_test": predicateTest }, []) 487 header_output += VfpRegRegRegOpDeclare.subst(vaddDIop); 488 decoder_output += VfpRegRegRegOpConstructor.subst(vaddDIop); 489 exec_output += PredOpExecute.subst(vaddDIop); 490 491 vsubSCode = ''' 492 VfpSavedState state = prepVfpFpscr(Fpscr); | 495 Fpscr = setVfpFpscr(Fpscr, state); 496 FpDestP0.uw = cDest.bits; 497 FpDestP1.uw = cDest.bits >> 32; 498 ''' 499 vaddDIop = InstObjParams("vaddd", "VaddD", "VfpRegRegRegOp", 500 { "code": vaddDCode, 501 "predicate_test": predicateTest }, []) 502 header_output += VfpRegRegRegOpDeclare.subst(vaddDIop); 503 decoder_output += VfpRegRegRegOpConstructor.subst(vaddDIop); 504 exec_output += PredOpExecute.subst(vaddDIop); 505 506 vsubSCode = ''' 507 VfpSavedState state = prepVfpFpscr(Fpscr); |
508 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
493 FpDest = FpOp1 - FpOp2; | 509 FpDest = FpOp1 - FpOp2; |
510 __asm__ __volatile__("" :: "m" (FpDest)); |
|
494 Fpscr = setVfpFpscr(Fpscr, state) 495 ''' 496 vsubSIop = InstObjParams("vsubs", "VsubS", "VfpRegRegRegOp", 497 { "code": vsubSCode, 498 "predicate_test": predicateTest }, []) 499 header_output += VfpRegRegRegOpDeclare.subst(vsubSIop); 500 decoder_output += VfpRegRegRegOpConstructor.subst(vsubSIop); 501 exec_output += PredOpExecute.subst(vsubSIop); 502 503 vsubDCode = ''' 504 IntDoubleUnion cOp1, cOp2, cDest; 505 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 506 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 507 VfpSavedState state = prepVfpFpscr(Fpscr); | 511 Fpscr = setVfpFpscr(Fpscr, state) 512 ''' 513 vsubSIop = InstObjParams("vsubs", "VsubS", "VfpRegRegRegOp", 514 { "code": vsubSCode, 515 "predicate_test": predicateTest }, []) 516 header_output += VfpRegRegRegOpDeclare.subst(vsubSIop); 517 decoder_output += VfpRegRegRegOpConstructor.subst(vsubSIop); 518 exec_output += PredOpExecute.subst(vsubSIop); 519 520 vsubDCode = ''' 521 IntDoubleUnion cOp1, cOp2, cDest; 522 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 523 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 524 VfpSavedState state = prepVfpFpscr(Fpscr); |
525 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
508 cDest.fp = cOp1.fp - cOp2.fp; | 526 cDest.fp = cOp1.fp - cOp2.fp; |
527 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
509 Fpscr = setVfpFpscr(Fpscr, state); 510 FpDestP0.uw = cDest.bits; 511 FpDestP1.uw = cDest.bits >> 32; 512 ''' 513 vsubDIop = InstObjParams("vsubd", "VsubD", "VfpRegRegRegOp", 514 { "code": vsubDCode, 515 "predicate_test": predicateTest }, []) 516 header_output += VfpRegRegRegOpDeclare.subst(vsubDIop); 517 decoder_output += VfpRegRegRegOpConstructor.subst(vsubDIop); 518 exec_output += PredOpExecute.subst(vsubDIop); 519 520 vdivSCode = ''' 521 VfpSavedState state = prepVfpFpscr(Fpscr); | 528 Fpscr = setVfpFpscr(Fpscr, state); 529 FpDestP0.uw = cDest.bits; 530 FpDestP1.uw = cDest.bits >> 32; 531 ''' 532 vsubDIop = InstObjParams("vsubd", "VsubD", "VfpRegRegRegOp", 533 { "code": vsubDCode, 534 "predicate_test": predicateTest }, []) 535 header_output += VfpRegRegRegOpDeclare.subst(vsubDIop); 536 decoder_output += VfpRegRegRegOpConstructor.subst(vsubDIop); 537 exec_output += PredOpExecute.subst(vsubDIop); 538 539 vdivSCode = ''' 540 VfpSavedState state = prepVfpFpscr(Fpscr); |
541 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
522 FpDest = FpOp1 / FpOp2; | 542 FpDest = FpOp1 / FpOp2; |
543 __asm__ __volatile__("" :: "m" (FpDest)); |
|
523 Fpscr = setVfpFpscr(Fpscr, state); 524 ''' 525 vdivSIop = InstObjParams("vdivs", "VdivS", "VfpRegRegRegOp", 526 { "code": vdivSCode, 527 "predicate_test": predicateTest }, []) 528 header_output += VfpRegRegRegOpDeclare.subst(vdivSIop); 529 decoder_output += VfpRegRegRegOpConstructor.subst(vdivSIop); 530 exec_output += PredOpExecute.subst(vdivSIop); 531 532 vdivDCode = ''' 533 IntDoubleUnion cOp1, cOp2, cDest; 534 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 535 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 536 VfpSavedState state = prepVfpFpscr(Fpscr); | 544 Fpscr = setVfpFpscr(Fpscr, state); 545 ''' 546 vdivSIop = InstObjParams("vdivs", "VdivS", "VfpRegRegRegOp", 547 { "code": vdivSCode, 548 "predicate_test": predicateTest }, []) 549 header_output += VfpRegRegRegOpDeclare.subst(vdivSIop); 550 decoder_output += VfpRegRegRegOpConstructor.subst(vdivSIop); 551 exec_output += PredOpExecute.subst(vdivSIop); 552 553 vdivDCode = ''' 554 IntDoubleUnion cOp1, cOp2, cDest; 555 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 556 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 557 VfpSavedState state = prepVfpFpscr(Fpscr); |
558 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cDest.fp)); |
|
537 cDest.fp = cOp1.fp / cOp2.fp; | 559 cDest.fp = cOp1.fp / cOp2.fp; |
560 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
538 Fpscr = setVfpFpscr(Fpscr, state); 539 FpDestP0.uw = cDest.bits; 540 FpDestP1.uw = cDest.bits >> 32; 541 ''' 542 vdivDIop = InstObjParams("vdivd", "VdivD", "VfpRegRegRegOp", 543 { "code": vdivDCode, 544 "predicate_test": predicateTest }, []) 545 header_output += VfpRegRegRegOpDeclare.subst(vdivDIop); 546 decoder_output += VfpRegRegRegOpConstructor.subst(vdivDIop); 547 exec_output += PredOpExecute.subst(vdivDIop); 548 549 vsqrtSCode = ''' 550 VfpSavedState state = prepVfpFpscr(Fpscr); | 561 Fpscr = setVfpFpscr(Fpscr, state); 562 FpDestP0.uw = cDest.bits; 563 FpDestP1.uw = cDest.bits >> 32; 564 ''' 565 vdivDIop = InstObjParams("vdivd", "VdivD", "VfpRegRegRegOp", 566 { "code": vdivDCode, 567 "predicate_test": predicateTest }, []) 568 header_output += VfpRegRegRegOpDeclare.subst(vdivDIop); 569 decoder_output += VfpRegRegRegOpConstructor.subst(vdivDIop); 570 exec_output += PredOpExecute.subst(vdivDIop); 571 572 vsqrtSCode = ''' 573 VfpSavedState state = prepVfpFpscr(Fpscr); |
574 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
551 FpDest = sqrtf(FpOp1); | 575 FpDest = sqrtf(FpOp1); |
576 __asm__ __volatile__("" :: "m" (FpDest)); |
|
552 Fpscr = setVfpFpscr(Fpscr, state); 553 if (FpOp1 < 0) { 554 FpDest = NAN; 555 } 556 ''' 557 vsqrtSIop = InstObjParams("vsqrts", "VsqrtS", "VfpRegRegOp", 558 { "code": vsqrtSCode, 559 "predicate_test": predicateTest }, []) 560 header_output += VfpRegRegOpDeclare.subst(vsqrtSIop); 561 decoder_output += VfpRegRegOpConstructor.subst(vsqrtSIop); 562 exec_output += PredOpExecute.subst(vsqrtSIop); 563 564 vsqrtDCode = ''' 565 IntDoubleUnion cOp1, cDest; 566 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 567 VfpSavedState state = prepVfpFpscr(Fpscr); | 577 Fpscr = setVfpFpscr(Fpscr, state); 578 if (FpOp1 < 0) { 579 FpDest = NAN; 580 } 581 ''' 582 vsqrtSIop = InstObjParams("vsqrts", "VsqrtS", "VfpRegRegOp", 583 { "code": vsqrtSCode, 584 "predicate_test": predicateTest }, []) 585 header_output += VfpRegRegOpDeclare.subst(vsqrtSIop); 586 decoder_output += VfpRegRegOpConstructor.subst(vsqrtSIop); 587 exec_output += PredOpExecute.subst(vsqrtSIop); 588 589 vsqrtDCode = ''' 590 IntDoubleUnion cOp1, cDest; 591 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 592 VfpSavedState state = prepVfpFpscr(Fpscr); |
593 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cDest.fp)); |
|
568 cDest.fp = sqrt(cOp1.fp); | 594 cDest.fp = sqrt(cOp1.fp); |
595 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
569 Fpscr = setVfpFpscr(Fpscr, state); 570 if (cOp1.fp < 0) { 571 cDest.fp = NAN; 572 } 573 FpDestP0.uw = cDest.bits; 574 FpDestP1.uw = cDest.bits >> 32; 575 ''' 576 vsqrtDIop = InstObjParams("vsqrtd", "VsqrtD", "VfpRegRegOp", 577 { "code": vsqrtDCode, 578 "predicate_test": predicateTest }, []) 579 header_output += VfpRegRegOpDeclare.subst(vsqrtDIop); 580 decoder_output += VfpRegRegOpConstructor.subst(vsqrtDIop); 581 exec_output += PredOpExecute.subst(vsqrtDIop); | 596 Fpscr = setVfpFpscr(Fpscr, state); 597 if (cOp1.fp < 0) { 598 cDest.fp = NAN; 599 } 600 FpDestP0.uw = cDest.bits; 601 FpDestP1.uw = cDest.bits >> 32; 602 ''' 603 vsqrtDIop = InstObjParams("vsqrtd", "VsqrtD", "VfpRegRegOp", 604 { "code": vsqrtDCode, 605 "predicate_test": predicateTest }, []) 606 header_output += VfpRegRegOpDeclare.subst(vsqrtDIop); 607 decoder_output += VfpRegRegOpConstructor.subst(vsqrtDIop); 608 exec_output += PredOpExecute.subst(vsqrtDIop); |
609}}; |
|
582 | 610 |
611let {{ 612 613 header_output = "" 614 decoder_output = "" 615 exec_output = "" 616 |
|
583 vmlaSCode = ''' 584 VfpSavedState state = prepVfpFpscr(Fpscr); | 617 vmlaSCode = ''' 618 VfpSavedState state = prepVfpFpscr(Fpscr); |
619 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
585 float mid = FpOp1 * FpOp2; 586 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 587 mid = NAN; 588 } 589 FpDest = FpDest + mid; | 620 float mid = FpOp1 * FpOp2; 621 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 622 mid = NAN; 623 } 624 FpDest = FpDest + mid; |
625 __asm__ __volatile__("" :: "m" (FpDest)); |
|
590 Fpscr = setVfpFpscr(Fpscr, state); 591 ''' 592 vmlaSIop = InstObjParams("vmlas", "VmlaS", "VfpRegRegRegOp", 593 { "code": vmlaSCode, 594 "predicate_test": predicateTest }, []) 595 header_output += VfpRegRegRegOpDeclare.subst(vmlaSIop); 596 decoder_output += VfpRegRegRegOpConstructor.subst(vmlaSIop); 597 exec_output += PredOpExecute.subst(vmlaSIop); 598 599 vmlaDCode = ''' 600 IntDoubleUnion cOp1, cOp2, cDest; 601 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 602 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 603 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 604 VfpSavedState state = prepVfpFpscr(Fpscr); | 626 Fpscr = setVfpFpscr(Fpscr, state); 627 ''' 628 vmlaSIop = InstObjParams("vmlas", "VmlaS", "VfpRegRegRegOp", 629 { "code": vmlaSCode, 630 "predicate_test": predicateTest }, []) 631 header_output += VfpRegRegRegOpDeclare.subst(vmlaSIop); 632 decoder_output += VfpRegRegRegOpConstructor.subst(vmlaSIop); 633 exec_output += PredOpExecute.subst(vmlaSIop); 634 635 vmlaDCode = ''' 636 IntDoubleUnion cOp1, cOp2, cDest; 637 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 638 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 639 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 640 VfpSavedState state = prepVfpFpscr(Fpscr); |
641 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
605 double mid = cOp1.fp * cOp2.fp; 606 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 607 (isinf(cOp2.fp) && cOp1.fp == 0)) { 608 mid = NAN; 609 } 610 cDest.fp = cDest.fp + mid; | 642 double mid = cOp1.fp * cOp2.fp; 643 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 644 (isinf(cOp2.fp) && cOp1.fp == 0)) { 645 mid = NAN; 646 } 647 cDest.fp = cDest.fp + mid; |
648 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
611 Fpscr = setVfpFpscr(Fpscr, state); 612 FpDestP0.uw = cDest.bits; 613 FpDestP1.uw = cDest.bits >> 32; 614 ''' 615 vmlaDIop = InstObjParams("vmlad", "VmlaD", "VfpRegRegRegOp", 616 { "code": vmlaDCode, 617 "predicate_test": predicateTest }, []) 618 header_output += VfpRegRegRegOpDeclare.subst(vmlaDIop); 619 decoder_output += VfpRegRegRegOpConstructor.subst(vmlaDIop); 620 exec_output += PredOpExecute.subst(vmlaDIop); 621 622 vmlsSCode = ''' 623 VfpSavedState state = prepVfpFpscr(Fpscr); | 649 Fpscr = setVfpFpscr(Fpscr, state); 650 FpDestP0.uw = cDest.bits; 651 FpDestP1.uw = cDest.bits >> 32; 652 ''' 653 vmlaDIop = InstObjParams("vmlad", "VmlaD", "VfpRegRegRegOp", 654 { "code": vmlaDCode, 655 "predicate_test": predicateTest }, []) 656 header_output += VfpRegRegRegOpDeclare.subst(vmlaDIop); 657 decoder_output += VfpRegRegRegOpConstructor.subst(vmlaDIop); 658 exec_output += PredOpExecute.subst(vmlaDIop); 659 660 vmlsSCode = ''' 661 VfpSavedState state = prepVfpFpscr(Fpscr); |
662 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
624 float mid = FpOp1 * FpOp2; 625 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 626 mid = NAN; 627 } 628 FpDest = FpDest - mid; | 663 float mid = FpOp1 * FpOp2; 664 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 665 mid = NAN; 666 } 667 FpDest = FpDest - mid; |
668 __asm__ __volatile__("" :: "m" (FpDest)); |
|
629 Fpscr = setVfpFpscr(Fpscr, state); 630 ''' 631 vmlsSIop = InstObjParams("vmlss", "VmlsS", "VfpRegRegRegOp", 632 { "code": vmlsSCode, 633 "predicate_test": predicateTest }, []) 634 header_output += VfpRegRegRegOpDeclare.subst(vmlsSIop); 635 decoder_output += VfpRegRegRegOpConstructor.subst(vmlsSIop); 636 exec_output += PredOpExecute.subst(vmlsSIop); 637 638 vmlsDCode = ''' 639 IntDoubleUnion cOp1, cOp2, cDest; 640 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 641 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 642 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 643 VfpSavedState state = prepVfpFpscr(Fpscr); | 669 Fpscr = setVfpFpscr(Fpscr, state); 670 ''' 671 vmlsSIop = InstObjParams("vmlss", "VmlsS", "VfpRegRegRegOp", 672 { "code": vmlsSCode, 673 "predicate_test": predicateTest }, []) 674 header_output += VfpRegRegRegOpDeclare.subst(vmlsSIop); 675 decoder_output += VfpRegRegRegOpConstructor.subst(vmlsSIop); 676 exec_output += PredOpExecute.subst(vmlsSIop); 677 678 vmlsDCode = ''' 679 IntDoubleUnion cOp1, cOp2, cDest; 680 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 681 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 682 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 683 VfpSavedState state = prepVfpFpscr(Fpscr); |
684 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
644 double mid = cOp1.fp * cOp2.fp; 645 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 646 (isinf(cOp2.fp) && cOp1.fp == 0)) { 647 mid = NAN; 648 } 649 cDest.fp = cDest.fp - mid; | 685 double mid = cOp1.fp * cOp2.fp; 686 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 687 (isinf(cOp2.fp) && cOp1.fp == 0)) { 688 mid = NAN; 689 } 690 cDest.fp = cDest.fp - mid; |
691 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
650 Fpscr = setVfpFpscr(Fpscr, state); 651 FpDestP0.uw = cDest.bits; 652 FpDestP1.uw = cDest.bits >> 32; 653 ''' 654 vmlsDIop = InstObjParams("vmlsd", "VmlsD", "VfpRegRegRegOp", 655 { "code": vmlsDCode, 656 "predicate_test": predicateTest }, []) 657 header_output += VfpRegRegRegOpDeclare.subst(vmlsDIop); 658 decoder_output += VfpRegRegRegOpConstructor.subst(vmlsDIop); 659 exec_output += PredOpExecute.subst(vmlsDIop); 660 661 vnmlaSCode = ''' 662 VfpSavedState state = prepVfpFpscr(Fpscr); | 692 Fpscr = setVfpFpscr(Fpscr, state); 693 FpDestP0.uw = cDest.bits; 694 FpDestP1.uw = cDest.bits >> 32; 695 ''' 696 vmlsDIop = InstObjParams("vmlsd", "VmlsD", "VfpRegRegRegOp", 697 { "code": vmlsDCode, 698 "predicate_test": predicateTest }, []) 699 header_output += VfpRegRegRegOpDeclare.subst(vmlsDIop); 700 decoder_output += VfpRegRegRegOpConstructor.subst(vmlsDIop); 701 exec_output += PredOpExecute.subst(vmlsDIop); 702 703 vnmlaSCode = ''' 704 VfpSavedState state = prepVfpFpscr(Fpscr); |
705 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
663 float mid = FpOp1 * FpOp2; 664 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 665 mid = NAN; 666 } 667 FpDest = -FpDest - mid; | 706 float mid = FpOp1 * FpOp2; 707 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 708 mid = NAN; 709 } 710 FpDest = -FpDest - mid; |
711 __asm__ __volatile__("" :: "m" (FpDest)); |
|
668 Fpscr = setVfpFpscr(Fpscr, state); 669 ''' 670 vnmlaSIop = InstObjParams("vnmlas", "VnmlaS", "VfpRegRegRegOp", 671 { "code": vnmlaSCode, 672 "predicate_test": predicateTest }, []) 673 header_output += VfpRegRegRegOpDeclare.subst(vnmlaSIop); 674 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlaSIop); 675 exec_output += PredOpExecute.subst(vnmlaSIop); 676 677 vnmlaDCode = ''' 678 IntDoubleUnion cOp1, cOp2, cDest; 679 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 680 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 681 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 682 VfpSavedState state = prepVfpFpscr(Fpscr); | 712 Fpscr = setVfpFpscr(Fpscr, state); 713 ''' 714 vnmlaSIop = InstObjParams("vnmlas", "VnmlaS", "VfpRegRegRegOp", 715 { "code": vnmlaSCode, 716 "predicate_test": predicateTest }, []) 717 header_output += VfpRegRegRegOpDeclare.subst(vnmlaSIop); 718 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlaSIop); 719 exec_output += PredOpExecute.subst(vnmlaSIop); 720 721 vnmlaDCode = ''' 722 IntDoubleUnion cOp1, cOp2, cDest; 723 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 724 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 725 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 726 VfpSavedState state = prepVfpFpscr(Fpscr); |
727 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
683 double mid = cOp1.fp * cOp2.fp; 684 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 685 (isinf(cOp2.fp) && cOp1.fp == 0)) { 686 mid = NAN; 687 } 688 cDest.fp = -cDest.fp - mid; | 728 double mid = cOp1.fp * cOp2.fp; 729 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 730 (isinf(cOp2.fp) && cOp1.fp == 0)) { 731 mid = NAN; 732 } 733 cDest.fp = -cDest.fp - mid; |
734 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
689 Fpscr = setVfpFpscr(Fpscr, state); 690 FpDestP0.uw = cDest.bits; 691 FpDestP1.uw = cDest.bits >> 32; 692 ''' 693 vnmlaDIop = InstObjParams("vnmlad", "VnmlaD", "VfpRegRegRegOp", 694 { "code": vnmlaDCode, 695 "predicate_test": predicateTest }, []) 696 header_output += VfpRegRegRegOpDeclare.subst(vnmlaDIop); 697 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlaDIop); 698 exec_output += PredOpExecute.subst(vnmlaDIop); 699 700 vnmlsSCode = ''' 701 VfpSavedState state = prepVfpFpscr(Fpscr); | 735 Fpscr = setVfpFpscr(Fpscr, state); 736 FpDestP0.uw = cDest.bits; 737 FpDestP1.uw = cDest.bits >> 32; 738 ''' 739 vnmlaDIop = InstObjParams("vnmlad", "VnmlaD", "VfpRegRegRegOp", 740 { "code": vnmlaDCode, 741 "predicate_test": predicateTest }, []) 742 header_output += VfpRegRegRegOpDeclare.subst(vnmlaDIop); 743 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlaDIop); 744 exec_output += PredOpExecute.subst(vnmlaDIop); 745 746 vnmlsSCode = ''' 747 VfpSavedState state = prepVfpFpscr(Fpscr); |
748 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
702 float mid = FpOp1 * FpOp2; 703 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 704 mid = NAN; 705 } 706 FpDest = -FpDest + mid; | 749 float mid = FpOp1 * FpOp2; 750 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 751 mid = NAN; 752 } 753 FpDest = -FpDest + mid; |
754 __asm__ __volatile__("" :: "m" (FpDest)); |
|
707 Fpscr = setVfpFpscr(Fpscr, state); 708 ''' 709 vnmlsSIop = InstObjParams("vnmlss", "VnmlsS", "VfpRegRegRegOp", 710 { "code": vnmlsSCode, 711 "predicate_test": predicateTest }, []) 712 header_output += VfpRegRegRegOpDeclare.subst(vnmlsSIop); 713 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlsSIop); 714 exec_output += PredOpExecute.subst(vnmlsSIop); 715 716 vnmlsDCode = ''' 717 IntDoubleUnion cOp1, cOp2, cDest; 718 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 719 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 720 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 721 VfpSavedState state = prepVfpFpscr(Fpscr); | 755 Fpscr = setVfpFpscr(Fpscr, state); 756 ''' 757 vnmlsSIop = InstObjParams("vnmlss", "VnmlsS", "VfpRegRegRegOp", 758 { "code": vnmlsSCode, 759 "predicate_test": predicateTest }, []) 760 header_output += VfpRegRegRegOpDeclare.subst(vnmlsSIop); 761 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlsSIop); 762 exec_output += PredOpExecute.subst(vnmlsSIop); 763 764 vnmlsDCode = ''' 765 IntDoubleUnion cOp1, cOp2, cDest; 766 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 767 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 768 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 769 VfpSavedState state = prepVfpFpscr(Fpscr); |
770 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
722 double mid = cOp1.fp * cOp2.fp; 723 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 724 (isinf(cOp2.fp) && cOp1.fp == 0)) { 725 mid = NAN; 726 } 727 cDest.fp = -cDest.fp + mid; | 771 double mid = cOp1.fp * cOp2.fp; 772 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 773 (isinf(cOp2.fp) && cOp1.fp == 0)) { 774 mid = NAN; 775 } 776 cDest.fp = -cDest.fp + mid; |
777 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
728 Fpscr = setVfpFpscr(Fpscr, state); 729 FpDestP0.uw = cDest.bits; 730 FpDestP1.uw = cDest.bits >> 32; 731 ''' 732 vnmlsDIop = InstObjParams("vnmlsd", "VnmlsD", "VfpRegRegRegOp", 733 { "code": vnmlsDCode, 734 "predicate_test": predicateTest }, []) 735 header_output += VfpRegRegRegOpDeclare.subst(vnmlsDIop); 736 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlsDIop); 737 exec_output += PredOpExecute.subst(vnmlsDIop); 738 739 vnmulSCode = ''' 740 VfpSavedState state = prepVfpFpscr(Fpscr); | 778 Fpscr = setVfpFpscr(Fpscr, state); 779 FpDestP0.uw = cDest.bits; 780 FpDestP1.uw = cDest.bits >> 32; 781 ''' 782 vnmlsDIop = InstObjParams("vnmlsd", "VnmlsD", "VfpRegRegRegOp", 783 { "code": vnmlsDCode, 784 "predicate_test": predicateTest }, []) 785 header_output += VfpRegRegRegOpDeclare.subst(vnmlsDIop); 786 decoder_output += VfpRegRegRegOpConstructor.subst(vnmlsDIop); 787 exec_output += PredOpExecute.subst(vnmlsDIop); 788 789 vnmulSCode = ''' 790 VfpSavedState state = prepVfpFpscr(Fpscr); |
791 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
741 float mid = FpOp1 * FpOp2; 742 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 743 mid = NAN; 744 } 745 FpDest = -mid; | 792 float mid = FpOp1 * FpOp2; 793 if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { 794 mid = NAN; 795 } 796 FpDest = -mid; |
797 __asm__ __volatile__("" :: "m" (FpDest)); |
|
746 Fpscr = setVfpFpscr(Fpscr, state); 747 ''' 748 vnmulSIop = InstObjParams("vnmuls", "VnmulS", "VfpRegRegRegOp", 749 { "code": vnmulSCode, 750 "predicate_test": predicateTest }, []) 751 header_output += VfpRegRegRegOpDeclare.subst(vnmulSIop); 752 decoder_output += VfpRegRegRegOpConstructor.subst(vnmulSIop); 753 exec_output += PredOpExecute.subst(vnmulSIop); 754 755 vnmulDCode = ''' 756 IntDoubleUnion cOp1, cOp2, cDest; 757 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 758 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 759 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 760 VfpSavedState state = prepVfpFpscr(Fpscr); | 798 Fpscr = setVfpFpscr(Fpscr, state); 799 ''' 800 vnmulSIop = InstObjParams("vnmuls", "VnmulS", "VfpRegRegRegOp", 801 { "code": vnmulSCode, 802 "predicate_test": predicateTest }, []) 803 header_output += VfpRegRegRegOpDeclare.subst(vnmulSIop); 804 decoder_output += VfpRegRegRegOpConstructor.subst(vnmulSIop); 805 exec_output += PredOpExecute.subst(vnmulSIop); 806 807 vnmulDCode = ''' 808 IntDoubleUnion cOp1, cOp2, cDest; 809 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 810 cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); 811 cDest.bits = ((uint64_t)FpDestP0.uw | ((uint64_t)FpDestP1.uw << 32)); 812 VfpSavedState state = prepVfpFpscr(Fpscr); |
813 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
761 double mid = cOp1.fp * cOp2.fp; 762 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 763 (isinf(cOp2.fp) && cOp1.fp == 0)) { 764 mid = NAN; 765 } 766 cDest.fp = -mid; | 814 double mid = cOp1.fp * cOp2.fp; 815 if ((isinf(cOp1.fp) && cOp2.fp == 0) || 816 (isinf(cOp2.fp) && cOp1.fp == 0)) { 817 mid = NAN; 818 } 819 cDest.fp = -mid; |
820 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
767 Fpscr = setVfpFpscr(Fpscr, state); 768 FpDestP0.uw = cDest.bits; 769 FpDestP1.uw = cDest.bits >> 32; 770 ''' 771 vnmulDIop = InstObjParams("vnmuld", "VnmulD", "VfpRegRegRegOp", 772 { "code": vnmulDCode, 773 "predicate_test": predicateTest }, []) 774 header_output += VfpRegRegRegOpDeclare.subst(vnmulDIop); 775 decoder_output += VfpRegRegRegOpConstructor.subst(vnmulDIop); 776 exec_output += PredOpExecute.subst(vnmulDIop); | 821 Fpscr = setVfpFpscr(Fpscr, state); 822 FpDestP0.uw = cDest.bits; 823 FpDestP1.uw = cDest.bits >> 32; 824 ''' 825 vnmulDIop = InstObjParams("vnmuld", "VnmulD", "VfpRegRegRegOp", 826 { "code": vnmulDCode, 827 "predicate_test": predicateTest }, []) 828 header_output += VfpRegRegRegOpDeclare.subst(vnmulDIop); 829 decoder_output += VfpRegRegRegOpConstructor.subst(vnmulDIop); 830 exec_output += PredOpExecute.subst(vnmulDIop); |
831}}; |
|
777 | 832 |
833let {{ 834 835 header_output = "" 836 decoder_output = "" 837 exec_output = "" 838 |
|
778 vcvtUIntFpSCode = ''' 779 VfpSavedState state = prepVfpFpscr(Fpscr); | 839 vcvtUIntFpSCode = ''' 840 VfpSavedState state = prepVfpFpscr(Fpscr); |
841 __asm__ __volatile__("" : "=m" (FpOp1.uw) : "m" (FpOp1.uw)); |
|
780 FpDest = FpOp1.uw; | 842 FpDest = FpOp1.uw; |
843 __asm__ __volatile__("" :: "m" (FpDest)); |
|
781 Fpscr = setVfpFpscr(Fpscr, state); 782 ''' 783 vcvtUIntFpSIop = InstObjParams("vcvt", "VcvtUIntFpS", "VfpRegRegOp", 784 { "code": vcvtUIntFpSCode, 785 "predicate_test": predicateTest }, []) 786 header_output += VfpRegRegOpDeclare.subst(vcvtUIntFpSIop); 787 decoder_output += VfpRegRegOpConstructor.subst(vcvtUIntFpSIop); 788 exec_output += PredOpExecute.subst(vcvtUIntFpSIop); 789 790 vcvtUIntFpDCode = ''' 791 IntDoubleUnion cDest; 792 VfpSavedState state = prepVfpFpscr(Fpscr); | 844 Fpscr = setVfpFpscr(Fpscr, state); 845 ''' 846 vcvtUIntFpSIop = InstObjParams("vcvt", "VcvtUIntFpS", "VfpRegRegOp", 847 { "code": vcvtUIntFpSCode, 848 "predicate_test": predicateTest }, []) 849 header_output += VfpRegRegOpDeclare.subst(vcvtUIntFpSIop); 850 decoder_output += VfpRegRegOpConstructor.subst(vcvtUIntFpSIop); 851 exec_output += PredOpExecute.subst(vcvtUIntFpSIop); 852 853 vcvtUIntFpDCode = ''' 854 IntDoubleUnion cDest; 855 VfpSavedState state = prepVfpFpscr(Fpscr); |
856 __asm__ __volatile__("" : "=m" (FpOp1P0.uw) : "m" (FpOp1P0.uw)); |
|
793 cDest.fp = (uint64_t)FpOp1P0.uw; | 857 cDest.fp = (uint64_t)FpOp1P0.uw; |
858 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
794 Fpscr = setVfpFpscr(Fpscr, state); 795 FpDestP0.uw = cDest.bits; 796 FpDestP1.uw = cDest.bits >> 32; 797 ''' 798 vcvtUIntFpDIop = InstObjParams("vcvt", "VcvtUIntFpD", "VfpRegRegOp", 799 { "code": vcvtUIntFpDCode, 800 "predicate_test": predicateTest }, []) 801 header_output += VfpRegRegOpDeclare.subst(vcvtUIntFpDIop); 802 decoder_output += VfpRegRegOpConstructor.subst(vcvtUIntFpDIop); 803 exec_output += PredOpExecute.subst(vcvtUIntFpDIop); 804 805 vcvtSIntFpSCode = ''' 806 VfpSavedState state = prepVfpFpscr(Fpscr); | 859 Fpscr = setVfpFpscr(Fpscr, state); 860 FpDestP0.uw = cDest.bits; 861 FpDestP1.uw = cDest.bits >> 32; 862 ''' 863 vcvtUIntFpDIop = InstObjParams("vcvt", "VcvtUIntFpD", "VfpRegRegOp", 864 { "code": vcvtUIntFpDCode, 865 "predicate_test": predicateTest }, []) 866 header_output += VfpRegRegOpDeclare.subst(vcvtUIntFpDIop); 867 decoder_output += VfpRegRegOpConstructor.subst(vcvtUIntFpDIop); 868 exec_output += PredOpExecute.subst(vcvtUIntFpDIop); 869 870 vcvtSIntFpSCode = ''' 871 VfpSavedState state = prepVfpFpscr(Fpscr); |
872 __asm__ __volatile__("" : "=m" (FpOp1.sw) : "m" (FpOp1.sw)); |
|
807 FpDest = FpOp1.sw; | 873 FpDest = FpOp1.sw; |
874 __asm__ __volatile__("" :: "m" (FpDest)); |
|
808 Fpscr = setVfpFpscr(Fpscr, state); 809 ''' 810 vcvtSIntFpSIop = InstObjParams("vcvt", "VcvtSIntFpS", "VfpRegRegOp", 811 { "code": vcvtSIntFpSCode, 812 "predicate_test": predicateTest }, []) 813 header_output += VfpRegRegOpDeclare.subst(vcvtSIntFpSIop); 814 decoder_output += VfpRegRegOpConstructor.subst(vcvtSIntFpSIop); 815 exec_output += PredOpExecute.subst(vcvtSIntFpSIop); 816 817 vcvtSIntFpDCode = ''' 818 IntDoubleUnion cDest; 819 VfpSavedState state = prepVfpFpscr(Fpscr); | 875 Fpscr = setVfpFpscr(Fpscr, state); 876 ''' 877 vcvtSIntFpSIop = InstObjParams("vcvt", "VcvtSIntFpS", "VfpRegRegOp", 878 { "code": vcvtSIntFpSCode, 879 "predicate_test": predicateTest }, []) 880 header_output += VfpRegRegOpDeclare.subst(vcvtSIntFpSIop); 881 decoder_output += VfpRegRegOpConstructor.subst(vcvtSIntFpSIop); 882 exec_output += PredOpExecute.subst(vcvtSIntFpSIop); 883 884 vcvtSIntFpDCode = ''' 885 IntDoubleUnion cDest; 886 VfpSavedState state = prepVfpFpscr(Fpscr); |
887 __asm__ __volatile__("" : "=m" (FpOp1P0.sw) : "m" (FpOp1P0.sw)); |
|
820 cDest.fp = FpOp1P0.sw; | 888 cDest.fp = FpOp1P0.sw; |
889 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
821 Fpscr = setVfpFpscr(Fpscr, state); 822 FpDestP0.uw = cDest.bits; 823 FpDestP1.uw = cDest.bits >> 32; 824 ''' 825 vcvtSIntFpDIop = InstObjParams("vcvt", "VcvtSIntFpD", "VfpRegRegOp", 826 { "code": vcvtSIntFpDCode, 827 "predicate_test": predicateTest }, []) 828 header_output += VfpRegRegOpDeclare.subst(vcvtSIntFpDIop); 829 decoder_output += VfpRegRegOpConstructor.subst(vcvtSIntFpDIop); 830 exec_output += PredOpExecute.subst(vcvtSIntFpDIop); 831 832 vcvtFpUIntSRCode = ''' 833 VfpSavedState state = prepVfpFpscr(Fpscr); | 890 Fpscr = setVfpFpscr(Fpscr, state); 891 FpDestP0.uw = cDest.bits; 892 FpDestP1.uw = cDest.bits >> 32; 893 ''' 894 vcvtSIntFpDIop = InstObjParams("vcvt", "VcvtSIntFpD", "VfpRegRegOp", 895 { "code": vcvtSIntFpDCode, 896 "predicate_test": predicateTest }, []) 897 header_output += VfpRegRegOpDeclare.subst(vcvtSIntFpDIop); 898 decoder_output += VfpRegRegOpConstructor.subst(vcvtSIntFpDIop); 899 exec_output += PredOpExecute.subst(vcvtSIntFpDIop); 900 901 vcvtFpUIntSRCode = ''' 902 VfpSavedState state = prepVfpFpscr(Fpscr); |
903 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
834 FpDest.uw = FpOp1; | 904 FpDest.uw = FpOp1; |
905 __asm__ __volatile__("" :: "m" (FpDest.uw)); |
|
835 Fpscr = setVfpFpscr(Fpscr, state); 836 ''' 837 vcvtFpUIntSRIop = InstObjParams("vcvt", "VcvtFpUIntSR", "VfpRegRegOp", 838 { "code": vcvtFpUIntSRCode, 839 "predicate_test": predicateTest }, []) 840 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntSRIop); 841 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntSRIop); 842 exec_output += PredOpExecute.subst(vcvtFpUIntSRIop); 843 844 vcvtFpUIntDRCode = ''' 845 IntDoubleUnion cOp1; 846 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 847 VfpSavedState state = prepVfpFpscr(Fpscr); | 906 Fpscr = setVfpFpscr(Fpscr, state); 907 ''' 908 vcvtFpUIntSRIop = InstObjParams("vcvt", "VcvtFpUIntSR", "VfpRegRegOp", 909 { "code": vcvtFpUIntSRCode, 910 "predicate_test": predicateTest }, []) 911 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntSRIop); 912 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntSRIop); 913 exec_output += PredOpExecute.subst(vcvtFpUIntSRIop); 914 915 vcvtFpUIntDRCode = ''' 916 IntDoubleUnion cOp1; 917 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 918 VfpSavedState state = prepVfpFpscr(Fpscr); |
919 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
848 uint64_t result = cOp1.fp; | 920 uint64_t result = cOp1.fp; |
921 __asm__ __volatile__("" :: "m" (result)); |
|
849 Fpscr = setVfpFpscr(Fpscr, state); 850 FpDestP0.uw = result; 851 ''' 852 vcvtFpUIntDRIop = InstObjParams("vcvtr", "VcvtFpUIntDR", "VfpRegRegOp", 853 { "code": vcvtFpUIntDRCode, 854 "predicate_test": predicateTest }, []) 855 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntDRIop); 856 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntDRIop); 857 exec_output += PredOpExecute.subst(vcvtFpUIntDRIop); 858 859 vcvtFpSIntSRCode = ''' 860 VfpSavedState state = prepVfpFpscr(Fpscr); | 922 Fpscr = setVfpFpscr(Fpscr, state); 923 FpDestP0.uw = result; 924 ''' 925 vcvtFpUIntDRIop = InstObjParams("vcvtr", "VcvtFpUIntDR", "VfpRegRegOp", 926 { "code": vcvtFpUIntDRCode, 927 "predicate_test": predicateTest }, []) 928 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntDRIop); 929 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntDRIop); 930 exec_output += PredOpExecute.subst(vcvtFpUIntDRIop); 931 932 vcvtFpSIntSRCode = ''' 933 VfpSavedState state = prepVfpFpscr(Fpscr); |
934 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
861 FpDest.sw = FpOp1; | 935 FpDest.sw = FpOp1; |
936 __asm__ __volatile__("" :: "m" (FpDest.sw)); |
|
862 Fpscr = setVfpFpscr(Fpscr, state); 863 ''' 864 vcvtFpSIntSRIop = InstObjParams("vcvtr", "VcvtFpSIntSR", "VfpRegRegOp", 865 { "code": vcvtFpSIntSRCode, 866 "predicate_test": predicateTest }, []) 867 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntSRIop); 868 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntSRIop); 869 exec_output += PredOpExecute.subst(vcvtFpSIntSRIop); 870 871 vcvtFpSIntDRCode = ''' 872 IntDoubleUnion cOp1; 873 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 874 VfpSavedState state = prepVfpFpscr(Fpscr); | 937 Fpscr = setVfpFpscr(Fpscr, state); 938 ''' 939 vcvtFpSIntSRIop = InstObjParams("vcvtr", "VcvtFpSIntSR", "VfpRegRegOp", 940 { "code": vcvtFpSIntSRCode, 941 "predicate_test": predicateTest }, []) 942 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntSRIop); 943 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntSRIop); 944 exec_output += PredOpExecute.subst(vcvtFpSIntSRIop); 945 946 vcvtFpSIntDRCode = ''' 947 IntDoubleUnion cOp1; 948 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 949 VfpSavedState state = prepVfpFpscr(Fpscr); |
950 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
875 int64_t result = cOp1.fp; | 951 int64_t result = cOp1.fp; |
952 __asm__ __volatile__("" :: "m" (result)); |
|
876 Fpscr = setVfpFpscr(Fpscr, state); 877 FpDestP0.uw = result; 878 ''' 879 vcvtFpSIntDRIop = InstObjParams("vcvtr", "VcvtFpSIntDR", "VfpRegRegOp", 880 { "code": vcvtFpSIntDRCode, 881 "predicate_test": predicateTest }, []) 882 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntDRIop); 883 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntDRIop); 884 exec_output += PredOpExecute.subst(vcvtFpSIntDRIop); 885 886 vcvtFpUIntSCode = ''' 887 VfpSavedState state = prepVfpFpscr(Fpscr); 888 fesetround(FeRoundZero); | 953 Fpscr = setVfpFpscr(Fpscr, state); 954 FpDestP0.uw = result; 955 ''' 956 vcvtFpSIntDRIop = InstObjParams("vcvtr", "VcvtFpSIntDR", "VfpRegRegOp", 957 { "code": vcvtFpSIntDRCode, 958 "predicate_test": predicateTest }, []) 959 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntDRIop); 960 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntDRIop); 961 exec_output += PredOpExecute.subst(vcvtFpSIntDRIop); 962 963 vcvtFpUIntSCode = ''' 964 VfpSavedState state = prepVfpFpscr(Fpscr); 965 fesetround(FeRoundZero); |
966 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
889 FpDest.uw = FpOp1; | 967 FpDest.uw = FpOp1; |
968 __asm__ __volatile__("" :: "m" (FpDest.uw)); |
|
890 Fpscr = setVfpFpscr(Fpscr, state); 891 ''' 892 vcvtFpUIntSIop = InstObjParams("vcvt", "VcvtFpUIntS", "VfpRegRegOp", 893 { "code": vcvtFpUIntSCode, 894 "predicate_test": predicateTest }, []) 895 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntSIop); 896 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntSIop); 897 exec_output += PredOpExecute.subst(vcvtFpUIntSIop); 898 899 vcvtFpUIntDCode = ''' 900 IntDoubleUnion cOp1; 901 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 902 VfpSavedState state = prepVfpFpscr(Fpscr); 903 fesetround(FeRoundZero); | 969 Fpscr = setVfpFpscr(Fpscr, state); 970 ''' 971 vcvtFpUIntSIop = InstObjParams("vcvt", "VcvtFpUIntS", "VfpRegRegOp", 972 { "code": vcvtFpUIntSCode, 973 "predicate_test": predicateTest }, []) 974 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntSIop); 975 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntSIop); 976 exec_output += PredOpExecute.subst(vcvtFpUIntSIop); 977 978 vcvtFpUIntDCode = ''' 979 IntDoubleUnion cOp1; 980 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 981 VfpSavedState state = prepVfpFpscr(Fpscr); 982 fesetround(FeRoundZero); |
983 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
904 uint64_t result = cOp1.fp; | 984 uint64_t result = cOp1.fp; |
985 __asm__ __volatile__("" :: "m" (result)); |
|
905 Fpscr = setVfpFpscr(Fpscr, state); 906 FpDestP0.uw = result; 907 ''' 908 vcvtFpUIntDIop = InstObjParams("vcvt", "VcvtFpUIntD", "VfpRegRegOp", 909 { "code": vcvtFpUIntDCode, 910 "predicate_test": predicateTest }, []) 911 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntDIop); 912 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntDIop); 913 exec_output += PredOpExecute.subst(vcvtFpUIntDIop); 914 915 vcvtFpSIntSCode = ''' 916 VfpSavedState state = prepVfpFpscr(Fpscr); 917 fesetround(FeRoundZero); | 986 Fpscr = setVfpFpscr(Fpscr, state); 987 FpDestP0.uw = result; 988 ''' 989 vcvtFpUIntDIop = InstObjParams("vcvt", "VcvtFpUIntD", "VfpRegRegOp", 990 { "code": vcvtFpUIntDCode, 991 "predicate_test": predicateTest }, []) 992 header_output += VfpRegRegOpDeclare.subst(vcvtFpUIntDIop); 993 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpUIntDIop); 994 exec_output += PredOpExecute.subst(vcvtFpUIntDIop); 995 996 vcvtFpSIntSCode = ''' 997 VfpSavedState state = prepVfpFpscr(Fpscr); 998 fesetround(FeRoundZero); |
999 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
918 FpDest.sw = FpOp1; | 1000 FpDest.sw = FpOp1; |
1001 __asm__ __volatile__("" :: "m" (FpDest.sw)); |
|
919 Fpscr = setVfpFpscr(Fpscr, state); 920 ''' 921 vcvtFpSIntSIop = InstObjParams("vcvt", "VcvtFpSIntS", "VfpRegRegOp", 922 { "code": vcvtFpSIntSCode, 923 "predicate_test": predicateTest }, []) 924 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntSIop); 925 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntSIop); 926 exec_output += PredOpExecute.subst(vcvtFpSIntSIop); 927 928 vcvtFpSIntDCode = ''' 929 IntDoubleUnion cOp1; 930 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 931 VfpSavedState state = prepVfpFpscr(Fpscr); 932 fesetround(FeRoundZero); | 1002 Fpscr = setVfpFpscr(Fpscr, state); 1003 ''' 1004 vcvtFpSIntSIop = InstObjParams("vcvt", "VcvtFpSIntS", "VfpRegRegOp", 1005 { "code": vcvtFpSIntSCode, 1006 "predicate_test": predicateTest }, []) 1007 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntSIop); 1008 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntSIop); 1009 exec_output += PredOpExecute.subst(vcvtFpSIntSIop); 1010 1011 vcvtFpSIntDCode = ''' 1012 IntDoubleUnion cOp1; 1013 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1014 VfpSavedState state = prepVfpFpscr(Fpscr); 1015 fesetround(FeRoundZero); |
1016 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
933 int64_t result = cOp1.fp; | 1017 int64_t result = cOp1.fp; |
1018 __asm__ __volatile__("" :: "m" (result)); |
|
934 Fpscr = setVfpFpscr(Fpscr, state); 935 FpDestP0.uw = result; 936 ''' 937 vcvtFpSIntDIop = InstObjParams("vcvt", "VcvtFpSIntD", "VfpRegRegOp", 938 { "code": vcvtFpSIntDCode, 939 "predicate_test": predicateTest }, []) 940 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntDIop); 941 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntDIop); 942 exec_output += PredOpExecute.subst(vcvtFpSIntDIop); 943 944 vcvtFpSFpDCode = ''' 945 IntDoubleUnion cDest; 946 VfpSavedState state = prepVfpFpscr(Fpscr); | 1019 Fpscr = setVfpFpscr(Fpscr, state); 1020 FpDestP0.uw = result; 1021 ''' 1022 vcvtFpSIntDIop = InstObjParams("vcvt", "VcvtFpSIntD", "VfpRegRegOp", 1023 { "code": vcvtFpSIntDCode, 1024 "predicate_test": predicateTest }, []) 1025 header_output += VfpRegRegOpDeclare.subst(vcvtFpSIntDIop); 1026 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSIntDIop); 1027 exec_output += PredOpExecute.subst(vcvtFpSIntDIop); 1028 1029 vcvtFpSFpDCode = ''' 1030 IntDoubleUnion cDest; 1031 VfpSavedState state = prepVfpFpscr(Fpscr); |
1032 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
947 cDest.fp = FpOp1; | 1033 cDest.fp = FpOp1; |
1034 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
948 Fpscr = setVfpFpscr(Fpscr, state); 949 FpDestP0.uw = cDest.bits; 950 FpDestP1.uw = cDest.bits >> 32; 951 ''' 952 vcvtFpSFpDIop = InstObjParams("vcvt", "VcvtFpSFpD", "VfpRegRegOp", 953 { "code": vcvtFpSFpDCode, 954 "predicate_test": predicateTest }, []) 955 header_output += VfpRegRegOpDeclare.subst(vcvtFpSFpDIop); 956 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSFpDIop); 957 exec_output += PredOpExecute.subst(vcvtFpSFpDIop); 958 959 vcvtFpDFpSCode = ''' 960 IntDoubleUnion cOp1; 961 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 962 VfpSavedState state = prepVfpFpscr(Fpscr); | 1035 Fpscr = setVfpFpscr(Fpscr, state); 1036 FpDestP0.uw = cDest.bits; 1037 FpDestP1.uw = cDest.bits >> 32; 1038 ''' 1039 vcvtFpSFpDIop = InstObjParams("vcvt", "VcvtFpSFpD", "VfpRegRegOp", 1040 { "code": vcvtFpSFpDCode, 1041 "predicate_test": predicateTest }, []) 1042 header_output += VfpRegRegOpDeclare.subst(vcvtFpSFpDIop); 1043 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpSFpDIop); 1044 exec_output += PredOpExecute.subst(vcvtFpSFpDIop); 1045 1046 vcvtFpDFpSCode = ''' 1047 IntDoubleUnion cOp1; 1048 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1049 VfpSavedState state = prepVfpFpscr(Fpscr); |
1050 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
963 FpDest = cOp1.fp; | 1051 FpDest = cOp1.fp; |
1052 __asm__ __volatile__("" :: "m" (FpDest)); |
|
964 Fpscr = setVfpFpscr(Fpscr, state); 965 ''' 966 vcvtFpDFpSIop = InstObjParams("vcvt", "VcvtFpDFpS", "VfpRegRegOp", 967 { "code": vcvtFpDFpSCode, 968 "predicate_test": predicateTest }, []) 969 header_output += VfpRegRegOpDeclare.subst(vcvtFpDFpSIop); 970 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpDFpSIop); 971 exec_output += PredOpExecute.subst(vcvtFpDFpSIop); --- 87 unchanged lines hidden (view full) --- 1059let {{ 1060 1061 header_output = "" 1062 decoder_output = "" 1063 exec_output = "" 1064 1065 vcvtFpSFixedSCode = ''' 1066 VfpSavedState state = prepVfpFpscr(Fpscr); | 1053 Fpscr = setVfpFpscr(Fpscr, state); 1054 ''' 1055 vcvtFpDFpSIop = InstObjParams("vcvt", "VcvtFpDFpS", "VfpRegRegOp", 1056 { "code": vcvtFpDFpSCode, 1057 "predicate_test": predicateTest }, []) 1058 header_output += VfpRegRegOpDeclare.subst(vcvtFpDFpSIop); 1059 decoder_output += VfpRegRegOpConstructor.subst(vcvtFpDFpSIop); 1060 exec_output += PredOpExecute.subst(vcvtFpDFpSIop); --- 87 unchanged lines hidden (view full) --- 1148let {{ 1149 1150 header_output = "" 1151 decoder_output = "" 1152 exec_output = "" 1153 1154 vcvtFpSFixedSCode = ''' 1155 VfpSavedState state = prepVfpFpscr(Fpscr); |
1156 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
1067 FpDest.sw = vfpFpSToFixed(FpOp1, true, false, imm); | 1157 FpDest.sw = vfpFpSToFixed(FpOp1, true, false, imm); |
1158 __asm__ __volatile__("" :: "m" (FpDest.sw)); |
|
1068 Fpscr = setVfpFpscr(Fpscr, state); 1069 ''' 1070 vcvtFpSFixedSIop = InstObjParams("vcvt", "VcvtFpSFixedS", "VfpRegRegImmOp", 1071 { "code": vcvtFpSFixedSCode, 1072 "predicate_test": predicateTest }, []) 1073 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSFixedSIop); 1074 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSFixedSIop); 1075 exec_output += PredOpExecute.subst(vcvtFpSFixedSIop); 1076 1077 vcvtFpSFixedDCode = ''' 1078 IntDoubleUnion cOp1; 1079 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1080 VfpSavedState state = prepVfpFpscr(Fpscr); | 1159 Fpscr = setVfpFpscr(Fpscr, state); 1160 ''' 1161 vcvtFpSFixedSIop = InstObjParams("vcvt", "VcvtFpSFixedS", "VfpRegRegImmOp", 1162 { "code": vcvtFpSFixedSCode, 1163 "predicate_test": predicateTest }, []) 1164 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSFixedSIop); 1165 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSFixedSIop); 1166 exec_output += PredOpExecute.subst(vcvtFpSFixedSIop); 1167 1168 vcvtFpSFixedDCode = ''' 1169 IntDoubleUnion cOp1; 1170 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1171 VfpSavedState state = prepVfpFpscr(Fpscr); |
1172 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
1081 uint64_t mid = vfpFpDToFixed(cOp1.fp, true, false, imm); | 1173 uint64_t mid = vfpFpDToFixed(cOp1.fp, true, false, imm); |
1174 __asm__ __volatile__("" :: "m" (mid)); |
|
1082 Fpscr = setVfpFpscr(Fpscr, state); 1083 FpDestP0.uw = mid; 1084 FpDestP1.uw = mid >> 32; 1085 ''' 1086 vcvtFpSFixedDIop = InstObjParams("vcvt", "VcvtFpSFixedD", "VfpRegRegImmOp", 1087 { "code": vcvtFpSFixedDCode, 1088 "predicate_test": predicateTest }, []) 1089 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSFixedDIop); 1090 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSFixedDIop); 1091 exec_output += PredOpExecute.subst(vcvtFpSFixedDIop); 1092 1093 vcvtFpUFixedSCode = ''' 1094 VfpSavedState state = prepVfpFpscr(Fpscr); | 1175 Fpscr = setVfpFpscr(Fpscr, state); 1176 FpDestP0.uw = mid; 1177 FpDestP1.uw = mid >> 32; 1178 ''' 1179 vcvtFpSFixedDIop = InstObjParams("vcvt", "VcvtFpSFixedD", "VfpRegRegImmOp", 1180 { "code": vcvtFpSFixedDCode, 1181 "predicate_test": predicateTest }, []) 1182 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSFixedDIop); 1183 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSFixedDIop); 1184 exec_output += PredOpExecute.subst(vcvtFpSFixedDIop); 1185 1186 vcvtFpUFixedSCode = ''' 1187 VfpSavedState state = prepVfpFpscr(Fpscr); |
1188 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
1095 FpDest.uw = vfpFpSToFixed(FpOp1, false, false, imm); | 1189 FpDest.uw = vfpFpSToFixed(FpOp1, false, false, imm); |
1190 __asm__ __volatile__("" :: "m" (FpDest.uw)); |
|
1096 Fpscr = setVfpFpscr(Fpscr, state); 1097 ''' 1098 vcvtFpUFixedSIop = InstObjParams("vcvt", "VcvtFpUFixedS", "VfpRegRegImmOp", 1099 { "code": vcvtFpUFixedSCode, 1100 "predicate_test": predicateTest }, []) 1101 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUFixedSIop); 1102 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUFixedSIop); 1103 exec_output += PredOpExecute.subst(vcvtFpUFixedSIop); 1104 1105 vcvtFpUFixedDCode = ''' 1106 IntDoubleUnion cOp1; 1107 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1108 VfpSavedState state = prepVfpFpscr(Fpscr); | 1191 Fpscr = setVfpFpscr(Fpscr, state); 1192 ''' 1193 vcvtFpUFixedSIop = InstObjParams("vcvt", "VcvtFpUFixedS", "VfpRegRegImmOp", 1194 { "code": vcvtFpUFixedSCode, 1195 "predicate_test": predicateTest }, []) 1196 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUFixedSIop); 1197 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUFixedSIop); 1198 exec_output += PredOpExecute.subst(vcvtFpUFixedSIop); 1199 1200 vcvtFpUFixedDCode = ''' 1201 IntDoubleUnion cOp1; 1202 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1203 VfpSavedState state = prepVfpFpscr(Fpscr); |
1204 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
1109 uint64_t mid = vfpFpDToFixed(cOp1.fp, false, false, imm); | 1205 uint64_t mid = vfpFpDToFixed(cOp1.fp, false, false, imm); |
1206 __asm__ __volatile__("" :: "m" (mid)); |
|
1110 Fpscr = setVfpFpscr(Fpscr, state); 1111 FpDestP0.uw = mid; 1112 FpDestP1.uw = mid >> 32; 1113 ''' 1114 vcvtFpUFixedDIop = InstObjParams("vcvt", "VcvtFpUFixedD", "VfpRegRegImmOp", 1115 { "code": vcvtFpUFixedDCode, 1116 "predicate_test": predicateTest }, []) 1117 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUFixedDIop); 1118 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUFixedDIop); 1119 exec_output += PredOpExecute.subst(vcvtFpUFixedDIop); 1120 1121 vcvtSFixedFpSCode = ''' 1122 VfpSavedState state = prepVfpFpscr(Fpscr); | 1207 Fpscr = setVfpFpscr(Fpscr, state); 1208 FpDestP0.uw = mid; 1209 FpDestP1.uw = mid >> 32; 1210 ''' 1211 vcvtFpUFixedDIop = InstObjParams("vcvt", "VcvtFpUFixedD", "VfpRegRegImmOp", 1212 { "code": vcvtFpUFixedDCode, 1213 "predicate_test": predicateTest }, []) 1214 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUFixedDIop); 1215 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUFixedDIop); 1216 exec_output += PredOpExecute.subst(vcvtFpUFixedDIop); 1217 1218 vcvtSFixedFpSCode = ''' 1219 VfpSavedState state = prepVfpFpscr(Fpscr); |
1220 __asm__ __volatile__("" : "=m" (FpOp1.sw) : "m" (FpOp1.sw)); |
|
1123 FpDest = vfpSFixedToFpS(FpOp1.sw, false, imm); | 1221 FpDest = vfpSFixedToFpS(FpOp1.sw, false, imm); |
1222 __asm__ __volatile__("" :: "m" (FpDest)); |
|
1124 Fpscr = setVfpFpscr(Fpscr, state); 1125 ''' 1126 vcvtSFixedFpSIop = InstObjParams("vcvt", "VcvtSFixedFpS", "VfpRegRegImmOp", 1127 { "code": vcvtSFixedFpSCode, 1128 "predicate_test": predicateTest }, []) 1129 header_output += VfpRegRegImmOpDeclare.subst(vcvtSFixedFpSIop); 1130 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSFixedFpSIop); 1131 exec_output += PredOpExecute.subst(vcvtSFixedFpSIop); 1132 1133 vcvtSFixedFpDCode = ''' 1134 IntDoubleUnion cDest; 1135 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1136 VfpSavedState state = prepVfpFpscr(Fpscr); | 1223 Fpscr = setVfpFpscr(Fpscr, state); 1224 ''' 1225 vcvtSFixedFpSIop = InstObjParams("vcvt", "VcvtSFixedFpS", "VfpRegRegImmOp", 1226 { "code": vcvtSFixedFpSCode, 1227 "predicate_test": predicateTest }, []) 1228 header_output += VfpRegRegImmOpDeclare.subst(vcvtSFixedFpSIop); 1229 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSFixedFpSIop); 1230 exec_output += PredOpExecute.subst(vcvtSFixedFpSIop); 1231 1232 vcvtSFixedFpDCode = ''' 1233 IntDoubleUnion cDest; 1234 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1235 VfpSavedState state = prepVfpFpscr(Fpscr); |
1236 __asm__ __volatile__("" : "=m" (mid) : "m" (mid)); |
|
1137 cDest.fp = vfpSFixedToFpD(mid, false, imm); | 1237 cDest.fp = vfpSFixedToFpD(mid, false, imm); |
1238 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
1138 Fpscr = setVfpFpscr(Fpscr, state); 1139 FpDestP0.uw = cDest.bits; 1140 FpDestP1.uw = cDest.bits >> 32; 1141 ''' 1142 vcvtSFixedFpDIop = InstObjParams("vcvt", "VcvtSFixedFpD", "VfpRegRegImmOp", 1143 { "code": vcvtSFixedFpDCode, 1144 "predicate_test": predicateTest }, []) 1145 header_output += VfpRegRegImmOpDeclare.subst(vcvtSFixedFpDIop); 1146 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSFixedFpDIop); 1147 exec_output += PredOpExecute.subst(vcvtSFixedFpDIop); 1148 1149 vcvtUFixedFpSCode = ''' 1150 VfpSavedState state = prepVfpFpscr(Fpscr); | 1239 Fpscr = setVfpFpscr(Fpscr, state); 1240 FpDestP0.uw = cDest.bits; 1241 FpDestP1.uw = cDest.bits >> 32; 1242 ''' 1243 vcvtSFixedFpDIop = InstObjParams("vcvt", "VcvtSFixedFpD", "VfpRegRegImmOp", 1244 { "code": vcvtSFixedFpDCode, 1245 "predicate_test": predicateTest }, []) 1246 header_output += VfpRegRegImmOpDeclare.subst(vcvtSFixedFpDIop); 1247 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSFixedFpDIop); 1248 exec_output += PredOpExecute.subst(vcvtSFixedFpDIop); 1249 1250 vcvtUFixedFpSCode = ''' 1251 VfpSavedState state = prepVfpFpscr(Fpscr); |
1252 __asm__ __volatile__("" : "=m" (FpOp1.uw) : "m" (FpOp1.uw)); |
|
1151 FpDest = vfpUFixedToFpS(FpOp1.uw, false, imm); | 1253 FpDest = vfpUFixedToFpS(FpOp1.uw, false, imm); |
1254 __asm__ __volatile__("" :: "m" (FpDest)); |
|
1152 Fpscr = setVfpFpscr(Fpscr, state); 1153 ''' 1154 vcvtUFixedFpSIop = InstObjParams("vcvt", "VcvtUFixedFpS", "VfpRegRegImmOp", 1155 { "code": vcvtUFixedFpSCode, 1156 "predicate_test": predicateTest }, []) 1157 header_output += VfpRegRegImmOpDeclare.subst(vcvtUFixedFpSIop); 1158 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUFixedFpSIop); 1159 exec_output += PredOpExecute.subst(vcvtUFixedFpSIop); 1160 1161 vcvtUFixedFpDCode = ''' 1162 IntDoubleUnion cDest; 1163 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1164 VfpSavedState state = prepVfpFpscr(Fpscr); | 1255 Fpscr = setVfpFpscr(Fpscr, state); 1256 ''' 1257 vcvtUFixedFpSIop = InstObjParams("vcvt", "VcvtUFixedFpS", "VfpRegRegImmOp", 1258 { "code": vcvtUFixedFpSCode, 1259 "predicate_test": predicateTest }, []) 1260 header_output += VfpRegRegImmOpDeclare.subst(vcvtUFixedFpSIop); 1261 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUFixedFpSIop); 1262 exec_output += PredOpExecute.subst(vcvtUFixedFpSIop); 1263 1264 vcvtUFixedFpDCode = ''' 1265 IntDoubleUnion cDest; 1266 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1267 VfpSavedState state = prepVfpFpscr(Fpscr); |
1268 __asm__ __volatile__("" : "=m" (mid) : "m" (mid)); |
|
1165 cDest.fp = vfpUFixedToFpD(mid, false, imm); | 1269 cDest.fp = vfpUFixedToFpD(mid, false, imm); |
1270 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
1166 Fpscr = setVfpFpscr(Fpscr, state); 1167 FpDestP0.uw = cDest.bits; 1168 FpDestP1.uw = cDest.bits >> 32; 1169 ''' 1170 vcvtUFixedFpDIop = InstObjParams("vcvt", "VcvtUFixedFpD", "VfpRegRegImmOp", 1171 { "code": vcvtUFixedFpDCode, 1172 "predicate_test": predicateTest }, []) 1173 header_output += VfpRegRegImmOpDeclare.subst(vcvtUFixedFpDIop); 1174 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUFixedFpDIop); 1175 exec_output += PredOpExecute.subst(vcvtUFixedFpDIop); 1176 1177 vcvtFpSHFixedSCode = ''' 1178 VfpSavedState state = prepVfpFpscr(Fpscr); | 1271 Fpscr = setVfpFpscr(Fpscr, state); 1272 FpDestP0.uw = cDest.bits; 1273 FpDestP1.uw = cDest.bits >> 32; 1274 ''' 1275 vcvtUFixedFpDIop = InstObjParams("vcvt", "VcvtUFixedFpD", "VfpRegRegImmOp", 1276 { "code": vcvtUFixedFpDCode, 1277 "predicate_test": predicateTest }, []) 1278 header_output += VfpRegRegImmOpDeclare.subst(vcvtUFixedFpDIop); 1279 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUFixedFpDIop); 1280 exec_output += PredOpExecute.subst(vcvtUFixedFpDIop); 1281 1282 vcvtFpSHFixedSCode = ''' 1283 VfpSavedState state = prepVfpFpscr(Fpscr); |
1284 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
1179 FpDest.sh = vfpFpSToFixed(FpOp1, true, true, imm); | 1285 FpDest.sh = vfpFpSToFixed(FpOp1, true, true, imm); |
1286 __asm__ __volatile__("" :: "m" (FpDest.sh)); |
|
1180 Fpscr = setVfpFpscr(Fpscr, state); 1181 ''' 1182 vcvtFpSHFixedSIop = InstObjParams("vcvt", "VcvtFpSHFixedS", 1183 "VfpRegRegImmOp", 1184 { "code": vcvtFpSHFixedSCode, 1185 "predicate_test": predicateTest }, []) 1186 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSHFixedSIop); 1187 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSHFixedSIop); 1188 exec_output += PredOpExecute.subst(vcvtFpSHFixedSIop); 1189 1190 vcvtFpSHFixedDCode = ''' 1191 IntDoubleUnion cOp1; 1192 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1193 VfpSavedState state = prepVfpFpscr(Fpscr); | 1287 Fpscr = setVfpFpscr(Fpscr, state); 1288 ''' 1289 vcvtFpSHFixedSIop = InstObjParams("vcvt", "VcvtFpSHFixedS", 1290 "VfpRegRegImmOp", 1291 { "code": vcvtFpSHFixedSCode, 1292 "predicate_test": predicateTest }, []) 1293 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSHFixedSIop); 1294 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSHFixedSIop); 1295 exec_output += PredOpExecute.subst(vcvtFpSHFixedSIop); 1296 1297 vcvtFpSHFixedDCode = ''' 1298 IntDoubleUnion cOp1; 1299 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1300 VfpSavedState state = prepVfpFpscr(Fpscr); |
1301 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
1194 uint64_t result = vfpFpDToFixed(cOp1.fp, true, true, imm); | 1302 uint64_t result = vfpFpDToFixed(cOp1.fp, true, true, imm); |
1303 __asm__ __volatile__("" :: "m" (result)); |
|
1195 Fpscr = setVfpFpscr(Fpscr, state); 1196 FpDestP0.uw = result; 1197 FpDestP1.uw = result >> 32; 1198 ''' 1199 vcvtFpSHFixedDIop = InstObjParams("vcvt", "VcvtFpSHFixedD", 1200 "VfpRegRegImmOp", 1201 { "code": vcvtFpSHFixedDCode, 1202 "predicate_test": predicateTest }, []) 1203 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSHFixedDIop); 1204 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSHFixedDIop); 1205 exec_output += PredOpExecute.subst(vcvtFpSHFixedDIop); 1206 1207 vcvtFpUHFixedSCode = ''' 1208 VfpSavedState state = prepVfpFpscr(Fpscr); | 1304 Fpscr = setVfpFpscr(Fpscr, state); 1305 FpDestP0.uw = result; 1306 FpDestP1.uw = result >> 32; 1307 ''' 1308 vcvtFpSHFixedDIop = InstObjParams("vcvt", "VcvtFpSHFixedD", 1309 "VfpRegRegImmOp", 1310 { "code": vcvtFpSHFixedDCode, 1311 "predicate_test": predicateTest }, []) 1312 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpSHFixedDIop); 1313 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpSHFixedDIop); 1314 exec_output += PredOpExecute.subst(vcvtFpSHFixedDIop); 1315 1316 vcvtFpUHFixedSCode = ''' 1317 VfpSavedState state = prepVfpFpscr(Fpscr); |
1318 __asm__ __volatile__("" : "=m" (FpOp1) : "m" (FpOp1)); |
|
1209 FpDest.uh = vfpFpSToFixed(FpOp1, false, true, imm); | 1319 FpDest.uh = vfpFpSToFixed(FpOp1, false, true, imm); |
1320 __asm__ __volatile__("" :: "m" (FpDest.uh)); |
|
1210 Fpscr = setVfpFpscr(Fpscr, state); 1211 ''' 1212 vcvtFpUHFixedSIop = InstObjParams("vcvt", "VcvtFpUHFixedS", 1213 "VfpRegRegImmOp", 1214 { "code": vcvtFpUHFixedSCode, 1215 "predicate_test": predicateTest }, []) 1216 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUHFixedSIop); 1217 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUHFixedSIop); 1218 exec_output += PredOpExecute.subst(vcvtFpUHFixedSIop); 1219 1220 vcvtFpUHFixedDCode = ''' 1221 IntDoubleUnion cOp1; 1222 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1223 VfpSavedState state = prepVfpFpscr(Fpscr); | 1321 Fpscr = setVfpFpscr(Fpscr, state); 1322 ''' 1323 vcvtFpUHFixedSIop = InstObjParams("vcvt", "VcvtFpUHFixedS", 1324 "VfpRegRegImmOp", 1325 { "code": vcvtFpUHFixedSCode, 1326 "predicate_test": predicateTest }, []) 1327 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUHFixedSIop); 1328 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUHFixedSIop); 1329 exec_output += PredOpExecute.subst(vcvtFpUHFixedSIop); 1330 1331 vcvtFpUHFixedDCode = ''' 1332 IntDoubleUnion cOp1; 1333 cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1334 VfpSavedState state = prepVfpFpscr(Fpscr); |
1335 __asm__ __volatile__("" : "=m" (cOp1.fp) : "m" (cOp1.fp)); |
|
1224 uint64_t mid = vfpFpDToFixed(cOp1.fp, false, true, imm); | 1336 uint64_t mid = vfpFpDToFixed(cOp1.fp, false, true, imm); |
1337 __asm__ __volatile__("" :: "m" (mid)); |
|
1225 Fpscr = setVfpFpscr(Fpscr, state); 1226 FpDestP0.uw = mid; 1227 FpDestP1.uw = mid >> 32; 1228 ''' 1229 vcvtFpUHFixedDIop = InstObjParams("vcvt", "VcvtFpUHFixedD", 1230 "VfpRegRegImmOp", 1231 { "code": vcvtFpUHFixedDCode, 1232 "predicate_test": predicateTest }, []) 1233 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUHFixedDIop); 1234 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUHFixedDIop); 1235 exec_output += PredOpExecute.subst(vcvtFpUHFixedDIop); 1236 1237 vcvtSHFixedFpSCode = ''' 1238 VfpSavedState state = prepVfpFpscr(Fpscr); | 1338 Fpscr = setVfpFpscr(Fpscr, state); 1339 FpDestP0.uw = mid; 1340 FpDestP1.uw = mid >> 32; 1341 ''' 1342 vcvtFpUHFixedDIop = InstObjParams("vcvt", "VcvtFpUHFixedD", 1343 "VfpRegRegImmOp", 1344 { "code": vcvtFpUHFixedDCode, 1345 "predicate_test": predicateTest }, []) 1346 header_output += VfpRegRegImmOpDeclare.subst(vcvtFpUHFixedDIop); 1347 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtFpUHFixedDIop); 1348 exec_output += PredOpExecute.subst(vcvtFpUHFixedDIop); 1349 1350 vcvtSHFixedFpSCode = ''' 1351 VfpSavedState state = prepVfpFpscr(Fpscr); |
1352 __asm__ __volatile__("" : "=m" (FpOp1.sh) : "m" (FpOp1.sh)); |
|
1239 FpDest = vfpSFixedToFpS(FpOp1.sh, true, imm); | 1353 FpDest = vfpSFixedToFpS(FpOp1.sh, true, imm); |
1354 __asm__ __volatile__("" :: "m" (FpDest)); |
|
1240 Fpscr = setVfpFpscr(Fpscr, state); 1241 ''' 1242 vcvtSHFixedFpSIop = InstObjParams("vcvt", "VcvtSHFixedFpS", 1243 "VfpRegRegImmOp", 1244 { "code": vcvtSHFixedFpSCode, 1245 "predicate_test": predicateTest }, []) 1246 header_output += VfpRegRegImmOpDeclare.subst(vcvtSHFixedFpSIop); 1247 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSHFixedFpSIop); 1248 exec_output += PredOpExecute.subst(vcvtSHFixedFpSIop); 1249 1250 vcvtSHFixedFpDCode = ''' 1251 IntDoubleUnion cDest; 1252 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1253 VfpSavedState state = prepVfpFpscr(Fpscr); | 1355 Fpscr = setVfpFpscr(Fpscr, state); 1356 ''' 1357 vcvtSHFixedFpSIop = InstObjParams("vcvt", "VcvtSHFixedFpS", 1358 "VfpRegRegImmOp", 1359 { "code": vcvtSHFixedFpSCode, 1360 "predicate_test": predicateTest }, []) 1361 header_output += VfpRegRegImmOpDeclare.subst(vcvtSHFixedFpSIop); 1362 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSHFixedFpSIop); 1363 exec_output += PredOpExecute.subst(vcvtSHFixedFpSIop); 1364 1365 vcvtSHFixedFpDCode = ''' 1366 IntDoubleUnion cDest; 1367 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1368 VfpSavedState state = prepVfpFpscr(Fpscr); |
1369 __asm__ __volatile__("" : "=m" (mid) : "m" (mid)); |
|
1254 cDest.fp = vfpSFixedToFpD(mid, true, imm); | 1370 cDest.fp = vfpSFixedToFpD(mid, true, imm); |
1371 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
1255 Fpscr = setVfpFpscr(Fpscr, state); 1256 FpDestP0.uw = cDest.bits; 1257 FpDestP1.uw = cDest.bits >> 32; 1258 ''' 1259 vcvtSHFixedFpDIop = InstObjParams("vcvt", "VcvtSHFixedFpD", 1260 "VfpRegRegImmOp", 1261 { "code": vcvtSHFixedFpDCode, 1262 "predicate_test": predicateTest }, []) 1263 header_output += VfpRegRegImmOpDeclare.subst(vcvtSHFixedFpDIop); 1264 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSHFixedFpDIop); 1265 exec_output += PredOpExecute.subst(vcvtSHFixedFpDIop); 1266 1267 vcvtUHFixedFpSCode = ''' 1268 VfpSavedState state = prepVfpFpscr(Fpscr); | 1372 Fpscr = setVfpFpscr(Fpscr, state); 1373 FpDestP0.uw = cDest.bits; 1374 FpDestP1.uw = cDest.bits >> 32; 1375 ''' 1376 vcvtSHFixedFpDIop = InstObjParams("vcvt", "VcvtSHFixedFpD", 1377 "VfpRegRegImmOp", 1378 { "code": vcvtSHFixedFpDCode, 1379 "predicate_test": predicateTest }, []) 1380 header_output += VfpRegRegImmOpDeclare.subst(vcvtSHFixedFpDIop); 1381 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtSHFixedFpDIop); 1382 exec_output += PredOpExecute.subst(vcvtSHFixedFpDIop); 1383 1384 vcvtUHFixedFpSCode = ''' 1385 VfpSavedState state = prepVfpFpscr(Fpscr); |
1386 __asm__ __volatile__("" : "=m" (FpOp1.uh) : "m" (FpOp1.uh)); |
|
1269 FpDest = vfpUFixedToFpS(FpOp1.uh, true, imm); | 1387 FpDest = vfpUFixedToFpS(FpOp1.uh, true, imm); |
1388 __asm__ __volatile__("" :: "m" (FpDest)); |
|
1270 Fpscr = setVfpFpscr(Fpscr, state); 1271 ''' 1272 vcvtUHFixedFpSIop = InstObjParams("vcvt", "VcvtUHFixedFpS", 1273 "VfpRegRegImmOp", 1274 { "code": vcvtUHFixedFpSCode, 1275 "predicate_test": predicateTest }, []) 1276 header_output += VfpRegRegImmOpDeclare.subst(vcvtUHFixedFpSIop); 1277 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUHFixedFpSIop); 1278 exec_output += PredOpExecute.subst(vcvtUHFixedFpSIop); 1279 1280 vcvtUHFixedFpDCode = ''' 1281 IntDoubleUnion cDest; 1282 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1283 VfpSavedState state = prepVfpFpscr(Fpscr); | 1389 Fpscr = setVfpFpscr(Fpscr, state); 1390 ''' 1391 vcvtUHFixedFpSIop = InstObjParams("vcvt", "VcvtUHFixedFpS", 1392 "VfpRegRegImmOp", 1393 { "code": vcvtUHFixedFpSCode, 1394 "predicate_test": predicateTest }, []) 1395 header_output += VfpRegRegImmOpDeclare.subst(vcvtUHFixedFpSIop); 1396 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUHFixedFpSIop); 1397 exec_output += PredOpExecute.subst(vcvtUHFixedFpSIop); 1398 1399 vcvtUHFixedFpDCode = ''' 1400 IntDoubleUnion cDest; 1401 uint64_t mid = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); 1402 VfpSavedState state = prepVfpFpscr(Fpscr); |
1403 __asm__ __volatile__("" : "=m" (mid) : "m" (mid)); |
|
1284 cDest.fp = vfpUFixedToFpD(mid, true, imm); | 1404 cDest.fp = vfpUFixedToFpD(mid, true, imm); |
1405 __asm__ __volatile__("" :: "m" (cDest.fp)); |
|
1285 Fpscr = setVfpFpscr(Fpscr, state); 1286 FpDestP0.uw = cDest.bits; 1287 FpDestP1.uw = cDest.bits >> 32; 1288 ''' 1289 vcvtUHFixedFpDIop = InstObjParams("vcvt", "VcvtUHFixedFpD", 1290 "VfpRegRegImmOp", 1291 { "code": vcvtUHFixedFpDCode, 1292 "predicate_test": predicateTest }, []) 1293 header_output += VfpRegRegImmOpDeclare.subst(vcvtUHFixedFpDIop); 1294 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUHFixedFpDIop); 1295 exec_output += PredOpExecute.subst(vcvtUHFixedFpDIop); 1296}}; | 1406 Fpscr = setVfpFpscr(Fpscr, state); 1407 FpDestP0.uw = cDest.bits; 1408 FpDestP1.uw = cDest.bits >> 32; 1409 ''' 1410 vcvtUHFixedFpDIop = InstObjParams("vcvt", "VcvtUHFixedFpD", 1411 "VfpRegRegImmOp", 1412 { "code": vcvtUHFixedFpDCode, 1413 "predicate_test": predicateTest }, []) 1414 header_output += VfpRegRegImmOpDeclare.subst(vcvtUHFixedFpDIop); 1415 decoder_output += VfpRegRegImmOpConstructor.subst(vcvtUHFixedFpDIop); 1416 exec_output += PredOpExecute.subst(vcvtUHFixedFpDIop); 1417}}; |