| Index: src/mips64/assembler-mips64-inl.h
|
| diff --git a/src/mips64/assembler-mips64-inl.h b/src/mips64/assembler-mips64-inl.h
|
| index 62dc2d3fa9fc7ffb293340628140c90db64fab4e..e35bf2facb9f7c0dd02ce321538ebe805c0d1b55 100644
|
| --- a/src/mips64/assembler-mips64-inl.h
|
| +++ b/src/mips64/assembler-mips64-inl.h
|
| @@ -84,36 +84,6 @@ bool Operand::is_reg() const {
|
| }
|
|
|
|
|
| -int Register::NumAllocatableRegisters() {
|
| - return kMaxNumAllocatableRegisters;
|
| -}
|
| -
|
| -
|
| -int DoubleRegister::NumRegisters() {
|
| - return FPURegister::kMaxNumRegisters;
|
| -}
|
| -
|
| -
|
| -int DoubleRegister::NumAllocatableRegisters() {
|
| - return FPURegister::kMaxNumAllocatableRegisters;
|
| -}
|
| -
|
| -
|
| -int DoubleRegister::NumAllocatableAliasedRegisters() {
|
| - return NumAllocatableRegisters();
|
| -}
|
| -
|
| -
|
| -int FPURegister::ToAllocationIndex(FPURegister reg) {
|
| - DCHECK(reg.code() % 2 == 0);
|
| - DCHECK(reg.code() / 2 < kMaxNumAllocatableRegisters);
|
| - DCHECK(reg.is_valid());
|
| - DCHECK(!reg.is(kDoubleRegZero));
|
| - DCHECK(!reg.is(kLithiumScratchDouble));
|
| - return (reg.code() / 2);
|
| -}
|
| -
|
| -
|
| // -----------------------------------------------------------------------------
|
| // RelocInfo.
|
|
|
|
|