OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 2730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2741 rre_form(LDEBR, Register::from_code(r1.code()), | 2741 rre_form(LDEBR, Register::from_code(r1.code()), |
2742 Register::from_code(r2.code())); | 2742 Register::from_code(r2.code())); |
2743 } | 2743 } |
2744 | 2744 |
2745 // Load Complement Register-Register (LB) | 2745 // Load Complement Register-Register (LB) |
2746 void Assembler::lcdbr(DoubleRegister r1, DoubleRegister r2) { | 2746 void Assembler::lcdbr(DoubleRegister r1, DoubleRegister r2) { |
2747 rre_form(LCDBR, Register::from_code(r1.code()), | 2747 rre_form(LCDBR, Register::from_code(r1.code()), |
2748 Register::from_code(r2.code())); | 2748 Register::from_code(r2.code())); |
2749 } | 2749 } |
2750 | 2750 |
| 2751 // Load Complement Register-Register (LB) |
| 2752 void Assembler::lcebr(DoubleRegister r1, DoubleRegister r2) { |
| 2753 rre_form(LCEBR, Register::from_code(r1.code()), |
| 2754 Register::from_code(r2.code())); |
| 2755 } |
| 2756 |
2751 // Load Positive Register-Register (LB) | 2757 // Load Positive Register-Register (LB) |
2752 void Assembler::lpebr(DoubleRegister r1, DoubleRegister r2) { | 2758 void Assembler::lpebr(DoubleRegister r1, DoubleRegister r2) { |
2753 rre_form(LPEBR, Register::from_code(r1.code()), | 2759 rre_form(LPEBR, Register::from_code(r1.code()), |
2754 Register::from_code(r2.code())); | 2760 Register::from_code(r2.code())); |
2755 } | 2761 } |
2756 | 2762 |
2757 // Load Positive Register-Register (LB) | 2763 // Load Positive Register-Register (LB) |
2758 void Assembler::lpdbr(DoubleRegister r1, DoubleRegister r2) { | 2764 void Assembler::lpdbr(DoubleRegister r1, DoubleRegister r2) { |
2759 rre_form(LPDBR, Register::from_code(r1.code()), | 2765 rre_form(LPDBR, Register::from_code(r1.code()), |
2760 Register::from_code(r2.code())); | 2766 Register::from_code(r2.code())); |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3079 SKIP_ICACHE_FLUSH); | 3085 SKIP_ICACHE_FLUSH); |
3080 } | 3086 } |
3081 | 3087 |
3082 reloc_info_writer.Write(&rinfo); | 3088 reloc_info_writer.Write(&rinfo); |
3083 } | 3089 } |
3084 } | 3090 } |
3085 | 3091 |
3086 } // namespace internal | 3092 } // namespace internal |
3087 } // namespace v8 | 3093 } // namespace v8 |
3088 #endif // V8_TARGET_ARCH_S390 | 3094 #endif // V8_TARGET_ARCH_S390 |
OLD | NEW |