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 2145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2156 emit(EXT4 | FRSP | frt.code() * B21 | frb.code() * B11 | rc); | 2156 emit(EXT4 | FRSP | frt.code() * B21 | frb.code() * B11 | rc); |
2157 } | 2157 } |
2158 | 2158 |
2159 | 2159 |
2160 void Assembler::fcfid(const DoubleRegister frt, const DoubleRegister frb, | 2160 void Assembler::fcfid(const DoubleRegister frt, const DoubleRegister frb, |
2161 RCBit rc) { | 2161 RCBit rc) { |
2162 emit(EXT4 | FCFID | frt.code() * B21 | frb.code() * B11 | rc); | 2162 emit(EXT4 | FCFID | frt.code() * B21 | frb.code() * B11 | rc); |
2163 } | 2163 } |
2164 | 2164 |
2165 | 2165 |
| 2166 void Assembler::fcfidu(const DoubleRegister frt, const DoubleRegister frb, |
| 2167 RCBit rc) { |
| 2168 emit(EXT4 | FCFIDU | frt.code() * B21 | frb.code() * B11 | rc); |
| 2169 } |
| 2170 |
| 2171 |
2166 void Assembler::fcfids(const DoubleRegister frt, const DoubleRegister frb, | 2172 void Assembler::fcfids(const DoubleRegister frt, const DoubleRegister frb, |
2167 RCBit rc) { | 2173 RCBit rc) { |
2168 emit(EXT3 | FCFID | frt.code() * B21 | frb.code() * B11 | rc); | 2174 emit(EXT3 | FCFID | frt.code() * B21 | frb.code() * B11 | rc); |
2169 } | 2175 } |
2170 | 2176 |
2171 | 2177 |
2172 void Assembler::fctid(const DoubleRegister frt, const DoubleRegister frb, | 2178 void Assembler::fctid(const DoubleRegister frt, const DoubleRegister frb, |
2173 RCBit rc) { | 2179 RCBit rc) { |
2174 emit(EXT4 | FCTID | frt.code() * B21 | frb.code() * B11 | rc); | 2180 emit(EXT4 | FCTID | frt.code() * B21 | frb.code() * B11 | rc); |
2175 } | 2181 } |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2431 | 2437 |
2432 trampoline_ = Trampoline(pc_offset() - size, tracked_branch_count_); | 2438 trampoline_ = Trampoline(pc_offset() - size, tracked_branch_count_); |
2433 } | 2439 } |
2434 } | 2440 } |
2435 | 2441 |
2436 | 2442 |
2437 } // namespace internal | 2443 } // namespace internal |
2438 } // namespace v8 | 2444 } // namespace v8 |
2439 | 2445 |
2440 #endif // V8_TARGET_ARCH_PPC | 2446 #endif // V8_TARGET_ARCH_PPC |
OLD | NEW |