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

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

Issue 1423493006: MIPS: Fix 'MIPS:r6 compact branch optimization.' (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase, merge cctest/test-disasm-mips/Type0 fix. Created 5 years, 1 month 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
« no previous file with comments | « no previous file | src/mips/assembler-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/assembler-mips.h
diff --git a/src/mips/assembler-mips.h b/src/mips/assembler-mips.h
index 303366290f6c8f6dbc49175d0f11cd6ac14ee1b3..1c8820b4a1f5e2bc3bd631cad5ff00c385d1a6c9 100644
--- a/src/mips/assembler-mips.h
+++ b/src/mips/assembler-mips.h
@@ -1143,6 +1143,8 @@ class Assembler : public AssemblerBase {
UNREACHABLE();
}
+ bool IsPrevInstrCompactBranch() { return prev_instr_compact_branch_; }
+
protected:
// Relocation for a type-recording IC has the AST id added to it. This
// member variable is a way to pass the information from the call site to
@@ -1206,8 +1208,6 @@ class Assembler : public AssemblerBase {
return block_buffer_growth_;
}
- bool IsPrevInstrCompactBranch() { return prev_instr_compact_branch_; }
-
private:
inline static void set_target_internal_reference_encoded_at(Address pc,
Address target);
« no previous file with comments | « no previous file | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698