Bug 891702 - IonMonkey: Delete dead code. r=djvj

This commit is contained in:
Dan Gohman 2013-07-10 11:57:15 -07:00
parent c715ae5174
commit 5c28187fdb
4 changed files with 0 additions and 24 deletions

View File

@ -1182,21 +1182,6 @@ MacroAssembler::printf(const char *output, Register value)
PopRegsInMask(RegisterSet::Volatile());
}
void
MacroAssembler::copyMem(Register copyFrom, Register copyEnd, Register copyTo, Register temp)
{
Label copyDone;
Label copyLoop;
bind(&copyLoop);
branchPtr(Assembler::AboveOrEqual, copyFrom, copyEnd, &copyDone);
load32(Address(copyFrom, 0), temp);
store32(temp, Address(copyTo, 0));
addPtr(Imm32(4), copyTo);
addPtr(Imm32(4), copyFrom);
jump(&copyLoop);
bind(&copyDone);
}
void
MacroAssembler::convertInt32ValueToDouble(const Address &address, Register scratch, Label *done)
{

View File

@ -920,8 +920,6 @@ class MacroAssembler : public MacroAssemblerSpecific
void printf(const char *output);
void printf(const char *output, Register value);
void copyMem(Register copyFrom, Register copyEnd, Register copyTo, Register temp);
void convertInt32ValueToDouble(const Address &address, Register scratch, Label *done);
void convertValueToDouble(ValueOperand value, FloatRegister output, Label *fail);
void convertValueToInt32(ValueOperand value, FloatRegister temp, Register output, Label *fail);

View File

@ -43,8 +43,6 @@ struct NativeIterator;
class Nursery;
struct StackShape;
namespace mjit { class Compiler; }
inline JSObject *
CastAsObject(PropertyOp op)
{

View File

@ -38,11 +38,6 @@ class Shape;
class BindingIter;
namespace mjit {
struct JITScript;
class CallCompiler;
}
namespace analyze {
class ScriptAnalysis;
}