mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 07:13:20 +00:00
Bug 1252326 - Reorder MacroAssembler flush functions to follow the header order. r=bbouvier
This commit is contained in:
parent
41843d829f
commit
ef0e203acf
@ -4578,6 +4578,15 @@ MacroAssemblerARMCompat::asMasm() const
|
||||
}
|
||||
|
||||
//{{{ check_macroassembler_style
|
||||
// ===============================================================
|
||||
// MacroAssembler high-level usage.
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{
|
||||
Assembler::flush();
|
||||
}
|
||||
|
||||
// ===============================================================
|
||||
// Stack manipulation functions.
|
||||
|
||||
@ -5042,10 +5051,4 @@ MacroAssembler::branchTestValue(Condition cond, const ValueOperand& lhs,
|
||||
ma_b(label, cond);
|
||||
}
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{
|
||||
Assembler::flush();
|
||||
}
|
||||
|
||||
//}}} check_macroassembler_style
|
||||
|
@ -308,6 +308,15 @@ MacroAssemblerCompat::atomicExchangeToTypedIntArray(Scalar::Type arrayType, cons
|
||||
Register value, Register temp, AnyRegister output);
|
||||
|
||||
//{{{ check_macroassembler_style
|
||||
// ===============================================================
|
||||
// MacroAssembler high-level usage.
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{
|
||||
Assembler::flush();
|
||||
}
|
||||
|
||||
// ===============================================================
|
||||
// Stack manipulation functions.
|
||||
|
||||
@ -736,12 +745,6 @@ MacroAssembler::branchTestValue(Condition cond, const ValueOperand& lhs,
|
||||
B(label, cond);
|
||||
}
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{
|
||||
Assembler::flush();
|
||||
}
|
||||
|
||||
//}}} check_macroassembler_style
|
||||
|
||||
} // namespace jit
|
||||
|
@ -1085,6 +1085,14 @@ MacroAssemblerMIPSShared::atomicExchange(int nbytes, bool signExtend, const Base
|
||||
}
|
||||
|
||||
//{{{ check_macroassembler_style
|
||||
// ===============================================================
|
||||
// MacroAssembler high-level usage.
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{
|
||||
}
|
||||
|
||||
// ===============================================================
|
||||
// Stack manipulation functions.
|
||||
|
||||
@ -1291,8 +1299,4 @@ MacroAssembler::branchPtrInNurseryRange(Condition cond, Register ptr, Register t
|
||||
SecondScratchReg, Imm32(nursery.nurserySize()), label);
|
||||
}
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{}
|
||||
|
||||
//}}} check_macroassembler_style
|
||||
|
@ -316,6 +316,14 @@ MacroAssemblerX86Shared::asmMergeWith(const MacroAssemblerX86Shared& other)
|
||||
}
|
||||
|
||||
//{{{ check_macroassembler_style
|
||||
// ===============================================================
|
||||
// MacroAssembler high-level usage.
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{
|
||||
}
|
||||
|
||||
// ===============================================================
|
||||
// Stack manipulation functions.
|
||||
|
||||
@ -591,8 +599,4 @@ MacroAssembler::pushFakeReturnAddress(Register scratch)
|
||||
return retAddr;
|
||||
}
|
||||
|
||||
void
|
||||
MacroAssembler::flush()
|
||||
{}
|
||||
|
||||
//}}} check_macroassembler_style
|
||||
|
Loading…
Reference in New Issue
Block a user