| OLD | NEW |
| (Empty) | |
| 1 #include "v8.h" |
| 2 |
| 3 #include "codegen-inl.h" |
| 4 #include "register-allocator-inl.h" |
| 5 |
| 6 namespace v8 { |
| 7 namespace internal { |
| 8 |
| 9 // ------------------------------------------------------------------------- |
| 10 // Result implementation. |
| 11 |
| 12 void Result::ToRegister() { |
| 13 UNIMPLEMENTED(); |
| 14 } |
| 15 |
| 16 |
| 17 void Result::ToRegister(Register target) { |
| 18 UNIMPLEMENTED(); |
| 19 } |
| 20 |
| 21 |
| 22 // ------------------------------------------------------------------------- |
| 23 // RegisterAllocator implementation. |
| 24 |
| 25 Result RegisterAllocator::AllocateByteRegisterWithoutSpilling() { |
| 26 // No byte registers on MIPS. |
| 27 UNREACHABLE(); |
| 28 return Result(); |
| 29 } |
| 30 |
| 31 |
| 32 } } // namespace v8::internal |
| OLD | NEW |