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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 return 0; | 143 return 0; |
144 } | 144 } |
145 | 145 |
146 | 146 |
147 int OS::VSNPrintF(char* str, size_t size, const char* format, va_list args) { | 147 int OS::VSNPrintF(char* str, size_t size, const char* format, va_list args) { |
148 UNIMPLEMENTED(); | 148 UNIMPLEMENTED(); |
149 return 0; | 149 return 0; |
150 } | 150 } |
151 | 151 |
152 | 152 |
| 153 uint64_t OS::CpuFeaturesImpliedByPlatform() { |
| 154 return 0; |
| 155 } |
| 156 |
| 157 |
153 double OS::nan_value() { | 158 double OS::nan_value() { |
154 UNIMPLEMENTED(); | 159 UNIMPLEMENTED(); |
155 return 0; | 160 return 0; |
156 } | 161 } |
157 | 162 |
158 | 163 |
159 bool OS::ArmCpuHasFeature(OS:CpuFeature feature) { | 164 bool OS::ArmCpuHasFeature(CpuFeature feature) { |
160 UNIMPLEMENTED(); | 165 UNIMPLEMENTED(); |
161 } | 166 } |
162 | 167 |
163 | 168 |
164 bool OS::IsOutsideAllocatedSpace(void* address) { | 169 bool OS::IsOutsideAllocatedSpace(void* address) { |
165 UNIMPLEMENTED(); | 170 UNIMPLEMENTED(); |
166 return false; | 171 return false; |
167 } | 172 } |
168 | 173 |
169 | 174 |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 } | 445 } |
441 | 446 |
442 | 447 |
443 void ProfileSampler::Stop() { | 448 void ProfileSampler::Stop() { |
444 UNIMPLEMENTED(); | 449 UNIMPLEMENTED(); |
445 } | 450 } |
446 | 451 |
447 #endif // ENABLE_LOGGING_AND_PROFILING | 452 #endif // ENABLE_LOGGING_AND_PROFILING |
448 | 453 |
449 } } // namespace v8::internal | 454 } } // namespace v8::internal |
OLD | NEW |