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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |