| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |