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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: src/mips/assembler-mips.cc
diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc
index 865e64c87d26fabb81a7511d774d1fb9b8440c60..ec2639275ccc8269d176e98d194d3c475010fe5d 100644
--- a/src/mips/assembler-mips.cc
+++ b/src/mips/assembler-mips.cc
@@ -3200,6 +3200,11 @@ Address Assembler::target_address_at(Address pc) {
GetImmediate16(instr2));
}
+ if (IsLui(instr1) && IsJicOrJialc(instr2)) {
+ // Assemble the 32 bit value.
+ return reinterpret_cast<Address>(CreateTargetAddress(instr1, instr2));
+ }
+
// We should never get here, force a bad address if we do.
UNREACHABLE();
return (Address)0x0;

Powered by Google App Engine
This is Rietveld 408576698