Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: src/mips/register-allocator-mips.cc

Issue 549079: Support for MIPS in architecture independent files.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698