Bug 1103108 part 4 - MIPS32: Remove unused ma_callJitNoPush. r=rankov

This commit is contained in:
Nicolas B. Pierron 2015-08-25 17:50:55 +02:00
parent 5c6fb611bc
commit 05372316d7
2 changed files with 0 additions and 10 deletions

View File

@ -3063,14 +3063,6 @@ MacroAssemblerMIPSCompat::storeTypeTag(ImmTag tag, const BaseIndex& dest)
as_sw(ScratchRegister, SecondScratchReg, TAG_OFFSET);
}
void
MacroAssemblerMIPS::ma_callJitNoPush(const Register r)
{
// This is a MIPS hack to push return address during jalr delay slot.
as_jalr(r);
as_sw(ra, StackPointer, 0);
}
// This macrosintruction calls the ion code and pushes the return address to
// the stack in the case when stack is not alligned.
void

View File

@ -315,8 +315,6 @@ class MacroAssemblerMIPS : public Assembler
FPConditionBit fcc = FCC0);
public:
// callso an Ion function, assuming that sp has already been decremented
void ma_callJitNoPush(const Register reg);
// calls an ion function, assuming that the stack is currently not 8 byte aligned
void ma_callJitHalfPush(const Register reg);
void ma_callJitHalfPush(Label* label);