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

Side by Side Diff: src/full-codegen.h

Issue 11275184: First draft of the sh4 port Base URL: http://github.com/v8/v8.git@master
Patch Set: Use GYP and fixe some typos Created 8 years, 1 month 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
« no previous file with comments | « src/frames-inl.h ('k') | src/globals.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 static const int kMaxBackEdgeWeight = 127; 120 static const int kMaxBackEdgeWeight = 127;
121 121
122 #if V8_TARGET_ARCH_IA32 122 #if V8_TARGET_ARCH_IA32
123 static const int kBackEdgeDistanceUnit = 100; 123 static const int kBackEdgeDistanceUnit = 100;
124 #elif V8_TARGET_ARCH_X64 124 #elif V8_TARGET_ARCH_X64
125 static const int kBackEdgeDistanceUnit = 162; 125 static const int kBackEdgeDistanceUnit = 162;
126 #elif V8_TARGET_ARCH_ARM 126 #elif V8_TARGET_ARCH_ARM
127 static const int kBackEdgeDistanceUnit = 142; 127 static const int kBackEdgeDistanceUnit = 142;
128 #elif V8_TARGET_ARCH_MIPS 128 #elif V8_TARGET_ARCH_MIPS
129 static const int kBackEdgeDistanceUnit = 142; 129 static const int kBackEdgeDistanceUnit = 142;
130 #elif V8_TARGET_ARCH_SH4
131 // v8 for sh4 does not support cranckshaft for the moment.
132 static const int kBackEdgeDistanceUnit = 142;
130 #else 133 #else
131 #error Unsupported target architecture. 134 #error Unsupported target architecture.
132 #endif 135 #endif
133 136
134 137
135 private: 138 private:
136 class Breakable; 139 class Breakable;
137 class Iteration; 140 class Iteration;
138 141
139 class TestContext; 142 class TestContext;
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 } 841 }
839 842
840 private: 843 private:
841 Zone* zone_; 844 Zone* zone_;
842 }; 845 };
843 846
844 847
845 } } // namespace v8::internal 848 } } // namespace v8::internal
846 849
847 #endif // V8_FULL_CODEGEN_H_ 850 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/frames-inl.h ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698