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

Side by Side Diff: src/platform-nullos.cc

Issue 385069: Fix some style issues in the ARM code.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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 | Annotate | Revision Log
« src/arm/codegen-arm.cc ('K') | « src/platform-linux.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 UNIMPLEMENTED(); 148 UNIMPLEMENTED();
149 return 0; 149 return 0;
150 } 150 }
151 151
152 152
153 double OS::nan_value() { 153 double OS::nan_value() {
154 UNIMPLEMENTED(); 154 UNIMPLEMENTED();
155 return 0; 155 return 0;
156 } 156 }
157 157
158
159 bool OS::ArmCpuHasFeature(OS:CpuFeature feature) {
160 UNIMPLEMENTED();
161 }
162
163
158 bool OS::IsOutsideAllocatedSpace(void* address) { 164 bool OS::IsOutsideAllocatedSpace(void* address) {
159 UNIMPLEMENTED(); 165 UNIMPLEMENTED();
160 return false; 166 return false;
161 } 167 }
162 168
163 169
164 size_t OS::AllocateAlignment() { 170 size_t OS::AllocateAlignment() {
165 UNIMPLEMENTED(); 171 UNIMPLEMENTED();
166 return 0; 172 return 0;
167 } 173 }
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 } 440 }
435 441
436 442
437 void ProfileSampler::Stop() { 443 void ProfileSampler::Stop() {
438 UNIMPLEMENTED(); 444 UNIMPLEMENTED();
439 } 445 }
440 446
441 #endif // ENABLE_LOGGING_AND_PROFILING 447 #endif // ENABLE_LOGGING_AND_PROFILING
442 448
443 } } // namespace v8::internal 449 } } // namespace v8::internal
OLDNEW
« src/arm/codegen-arm.cc ('K') | « src/platform-linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698