Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: src/mips/assembler-mips.cc

Issue 2542403002: MIPS: Use JIC/JIALC offset when possible (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // 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 3182 matching lines...) Expand 10 before | Expand all | Expand 10 after
3193 Address Assembler::target_address_at(Address pc) { 3193 Address Assembler::target_address_at(Address pc) {
3194 Instr instr1 = instr_at(pc); 3194 Instr instr1 = instr_at(pc);
3195 Instr instr2 = instr_at(pc + kInstrSize); 3195 Instr instr2 = instr_at(pc + kInstrSize);
3196 // Interpret 2 instructions generated by li: lui/ori 3196 // Interpret 2 instructions generated by li: lui/ori
3197 if (IsLui(instr1) && IsOri(instr2)) { 3197 if (IsLui(instr1) && IsOri(instr2)) {
3198 // Assemble the 32 bit value. 3198 // Assemble the 32 bit value.
3199 return reinterpret_cast<Address>((GetImmediate16(instr1) << kLuiShift) | 3199 return reinterpret_cast<Address>((GetImmediate16(instr1) << kLuiShift) |
3200 GetImmediate16(instr2)); 3200 GetImmediate16(instr2));
3201 } 3201 }
3202 3202
3203 if (IsLui(instr1) && IsJicOrJialc(instr2)) {
3204 // Assemble the 32 bit value.
3205 return reinterpret_cast<Address>(CreateTargetAddress(instr1, instr2));
3206 }
3207
3203 // We should never get here, force a bad address if we do. 3208 // We should never get here, force a bad address if we do.
3204 UNREACHABLE(); 3209 UNREACHABLE();
3205 return (Address)0x0; 3210 return (Address)0x0;
3206 } 3211 }
3207 3212
3208 3213
3209 // MIPS and ia32 use opposite encoding for qNaN and sNaN, such that ia32 3214 // MIPS and ia32 use opposite encoding for qNaN and sNaN, such that ia32
3210 // qNaN is a MIPS sNaN, and ia32 sNaN is MIPS qNaN. If running from a heap 3215 // qNaN is a MIPS sNaN, and ia32 sNaN is MIPS qNaN. If running from a heap
3211 // snapshot generated on ia32, the resulting MIPS sNaN must be quieted. 3216 // snapshot generated on ia32, the resulting MIPS sNaN must be quieted.
3212 // OS::nan_value() returns a qNaN. 3217 // OS::nan_value() returns a qNaN.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
3259 3264
3260 if (icache_flush_mode != SKIP_ICACHE_FLUSH) { 3265 if (icache_flush_mode != SKIP_ICACHE_FLUSH) {
3261 Assembler::FlushICache(isolate, pc, 2 * sizeof(int32_t)); 3266 Assembler::FlushICache(isolate, pc, 2 * sizeof(int32_t));
3262 } 3267 }
3263 } 3268 }
3264 3269
3265 } // namespace internal 3270 } // namespace internal
3266 } // namespace v8 3271 } // namespace v8
3267 3272
3268 #endif // V8_TARGET_ARCH_MIPS 3273 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698