| 723 | } |
| 724 | |
| 725 | inline std::string IterRegArgs() const |
| 726 | { |
| 727 | std::string str = ""; |
| 728 | |
| 729 | if(linearRegs) |
| 730 | { |
| 731 | std::string regType = RegBaseType<PR>(2); |
| 732 | |
| 733 | for(size_t i=0; i<cnPerWI; i++) |
| 734 | { |
| 735 | if(i != 0) str += ", "; |
| 736 | str += regType; str += " *R"; |
| 737 | str += SztToStr(i); |
| 738 | } |
| 739 | } |
| 740 | |
| 741 | return str; |
| 742 | } |
| 743 | |
| 744 | #define SR_READ 1 |
| 745 | #define SR_TWMUL 2 |
nothing calls this directly
no test coverage detected