Reviewers: dstence, michael_dawson,
Description:
PPC: Remove unused jump_elimination_allowed parameter to
Assembler::branch_offset().
[email protected], [email protected]
BUG=
Please review this at https://codereview.chromium.org/1233453007/
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Affected files (+4, -5 lines):
M src/ppc/assembler-ppc.h
Index: src/ppc/assembler-ppc.h
diff --git a/src/ppc/assembler-ppc.h b/src/ppc/assembler-ppc.h
index
82d068503d72c4ee9b9c1a22f935de4550acc996..356dd4de8112b27abfd363c5ba6a17fe32a2f5d3
100644
--- a/src/ppc/assembler-ppc.h
+++ b/src/ppc/assembler-ppc.h
@@ -591,8 +591,7 @@ class Assembler : public AssemblerBase {
// Returns the branch offset to the given label from the current code
position
// Links the label to the current position if it is still unbound
- // Manages the jump elimination optimization if the second parameter is
true.
- int branch_offset(Label* L, bool jump_elimination_allowed) {
+ int branch_offset(Label* L) {
int position = link(L);
return position - pc_offset();
}
@@ -753,7 +752,7 @@ class Assembler : public AssemblerBase {
void bctrl();
// Convenience branch instructions using labels
- void b(Label* L, LKBit lk = LeaveLK) { b(branch_offset(L, false), lk); }
+ void b(Label* L, LKBit lk = LeaveLK) { b(branch_offset(L), lk); }
inline CRegister cmpi_optimization(CRegister cr) {
// Check whether the branch is preceeded by an optimizable cmpi
against 0.
@@ -798,7 +797,7 @@ class Assembler : public AssemblerBase {
cr = cmpi_optimization(cr);
- int b_offset = branch_offset(L, false);
+ int b_offset = branch_offset(L);
switch (cond) {
case eq:
@@ -931,7 +930,7 @@ class Assembler : public AssemblerBase {
// Decrement CTR; branch if CTR != 0
void bdnz(Label* L, LKBit lk = LeaveLK) {
- bc(branch_offset(L, false), DCBNZ, 0, lk);
+ bc(branch_offset(L), DCBNZ, 0, lk);
}
// Data-processing instructions
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.