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

Side by Side Diff: src/register-allocator-inl.h

Issue 561072: MIPS port initial commit (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 10 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
« no previous file with comments | « src/register-allocator.h ('k') | src/simulator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 20 matching lines...) Expand all
31 #include "codegen.h" 31 #include "codegen.h"
32 #include "register-allocator.h" 32 #include "register-allocator.h"
33 #include "virtual-frame.h" 33 #include "virtual-frame.h"
34 34
35 #if V8_TARGET_ARCH_IA32 35 #if V8_TARGET_ARCH_IA32
36 #include "ia32/register-allocator-ia32-inl.h" 36 #include "ia32/register-allocator-ia32-inl.h"
37 #elif V8_TARGET_ARCH_X64 37 #elif V8_TARGET_ARCH_X64
38 #include "x64/register-allocator-x64-inl.h" 38 #include "x64/register-allocator-x64-inl.h"
39 #elif V8_TARGET_ARCH_ARM 39 #elif V8_TARGET_ARCH_ARM
40 #include "arm/register-allocator-arm-inl.h" 40 #include "arm/register-allocator-arm-inl.h"
41 #elif V8_TARGET_ARCH_MIPS
42 #include "mips/register-allocator-mips-inl.h"
41 #else 43 #else
42 #error Unsupported target architecture. 44 #error Unsupported target architecture.
43 #endif 45 #endif
44 46
45 47
46 namespace v8 { 48 namespace v8 {
47 namespace internal { 49 namespace internal {
48 50
49 Result::~Result() { 51 Result::~Result() {
50 if (is_register()) { 52 if (is_register()) {
(...skipping 14 matching lines...) Expand all
65 destination->value_ = value_; 67 destination->value_ = value_;
66 if (is_register()) { 68 if (is_register()) {
67 CodeGeneratorScope::Current()->allocator()->Use(reg()); 69 CodeGeneratorScope::Current()->allocator()->Use(reg());
68 } 70 }
69 } 71 }
70 72
71 73
72 } } // namespace v8::internal 74 } } // namespace v8::internal
73 75
74 #endif // V8_REGISTER_ALLOCATOR_INL_H_ 76 #endif // V8_REGISTER_ALLOCATOR_INL_H_
OLDNEW
« no previous file with comments | « src/register-allocator.h ('k') | src/simulator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698