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

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

Issue 6905098: ARM: Support hardfloat in SCons build and make it a build time setting (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added CAN_USE_VFP_INSTRUCTIONS when hardfloat is used Created 9 years, 7 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/platform-linux.cc ('k') | tools/test.py » ('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 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 UNIMPLEMENTED(); 179 UNIMPLEMENTED();
180 return 0; 180 return 0;
181 } 181 }
182 182
183 183
184 bool OS::ArmCpuHasFeature(CpuFeature feature) { 184 bool OS::ArmCpuHasFeature(CpuFeature feature) {
185 UNIMPLEMENTED(); 185 UNIMPLEMENTED();
186 } 186 }
187 187
188 188
189 bool OS::ArmUsingHardFloat() {
190 UNIMPLEMENTED();
191 }
192
193
189 bool OS::IsOutsideAllocatedSpace(void* address) { 194 bool OS::IsOutsideAllocatedSpace(void* address) {
190 UNIMPLEMENTED(); 195 UNIMPLEMENTED();
191 return false; 196 return false;
192 } 197 }
193 198
194 199
195 size_t OS::AllocateAlignment() { 200 size_t OS::AllocateAlignment() {
196 UNIMPLEMENTED(); 201 UNIMPLEMENTED();
197 return 0; 202 return 0;
198 } 203 }
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 } 470 }
466 471
467 472
468 void ProfileSampler::Stop() { 473 void ProfileSampler::Stop() {
469 UNIMPLEMENTED(); 474 UNIMPLEMENTED();
470 } 475 }
471 476
472 #endif // ENABLE_LOGGING_AND_PROFILING 477 #endif // ENABLE_LOGGING_AND_PROFILING
473 478
474 } } // namespace v8::internal 479 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-linux.cc ('k') | tools/test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698