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

Unified Diff: src/mips/assembler-mips-inl.h

Issue 2542403002: MIPS: Use JIC/JIALC offset when possible (Closed)
Patch Set: Simplify using Call and Jump 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-inl.h
diff --git a/src/mips/assembler-mips-inl.h b/src/mips/assembler-mips-inl.h
index 963ed4acc90fc4cfcad73443947fed6a288f155b..bb64460f209579a66e050ca3604576a1823c5cc8 100644
--- a/src/mips/assembler-mips-inl.h
+++ b/src/mips/assembler-mips-inl.h
@@ -139,7 +139,13 @@ int RelocInfo::target_address_size() {
Address Assembler::target_address_from_return_address(Address pc) {
- return pc - kCallTargetAddressOffset;
+ if (IsMipsArchVariant(kMips32r6)) {
+ // We use another optimization that reduces one operation, this covers uses
+ // calling this function.
+ return pc - kCallTargetAddressOffset + kInstrSize;
+ } else {
+ return pc - kCallTargetAddressOffset;
+ }
}

Powered by Google App Engine
This is Rietveld 408576698