| Index: src/arm/assembler-arm.h
|
| diff --git a/src/arm/assembler-arm.h b/src/arm/assembler-arm.h
|
| index 59f03af3165a90be562d8d03ef504dde5f69580f..461d5b0aa66e10f98783b9a3d794440bfd7a7789 100644
|
| --- a/src/arm/assembler-arm.h
|
| +++ b/src/arm/assembler-arm.h
|
| @@ -118,9 +118,6 @@ struct Register {
|
| Register r = {code};
|
| return r;
|
| }
|
| - const char* ToString();
|
| - bool IsAllocatable(RegisterConfiguration::CompilerSelector compiler =
|
| - RegisterConfiguration::CRANKSHAFT) const;
|
| bool is_valid() const { return 0 <= reg_code && reg_code < kNumRegisters; }
|
| bool is(Register reg) const { return reg_code == reg.reg_code; }
|
| int code() const {
|
| @@ -164,9 +161,6 @@ struct SwVfpRegister {
|
|
|
| static const int kSizeInBytes = 4;
|
|
|
| - const char* ToString();
|
| - bool IsAllocatable(RegisterConfiguration::CompilerSelector compiler =
|
| - RegisterConfiguration::CRANKSHAFT) const;
|
| bool is_valid() const { return 0 <= reg_code && reg_code < 32; }
|
| bool is(SwVfpRegister reg) const { return reg_code == reg.reg_code; }
|
| int code() const {
|
| @@ -212,9 +206,6 @@ struct DwVfpRegister {
|
| // d15: scratch register.
|
| static const int kSizeInBytes = 8;
|
|
|
| - const char* ToString();
|
| - bool IsAllocatable(RegisterConfiguration::CompilerSelector compiler =
|
| - RegisterConfiguration::CRANKSHAFT) const;
|
| bool is_valid() const { return 0 <= reg_code && reg_code < kMaxNumRegisters; }
|
| bool is(DwVfpRegister reg) const { return reg_code == reg.reg_code; }
|
| int code() const {
|
|
|