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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 } | 191 } |
192 | 192 |
193 | 193 |
194 void OS::Abort() { | 194 void OS::Abort() { |
195 // Redirect to std abort to signal abnormal program termination. | 195 // Redirect to std abort to signal abnormal program termination. |
196 abort(); | 196 abort(); |
197 } | 197 } |
198 | 198 |
199 | 199 |
200 void OS::DebugBreak() { | 200 void OS::DebugBreak() { |
201 #if (defined(__arm__) || defined(__thumb__)) && \ | 201 #if (defined(__arm__) || defined(__thumb__)) |
202 defined(CAN_USE_ARMV5_INSTRUCTIONS) | 202 # if defined(CAN_USE_ARMV5_INSTRUCTIONS) |
203 asm("bkpt 0"); | 203 asm("bkpt 0"); |
| 204 # endif |
204 #else | 205 #else |
205 asm("int $3"); | 206 asm("int $3"); |
206 #endif | 207 #endif |
207 } | 208 } |
208 | 209 |
209 | 210 |
210 class PosixMemoryMappedFile : public OS::MemoryMappedFile { | 211 class PosixMemoryMappedFile : public OS::MemoryMappedFile { |
211 public: | 212 public: |
212 PosixMemoryMappedFile(FILE* file, void* memory, int size) | 213 PosixMemoryMappedFile(FILE* file, void* memory, int size) |
213 : file_(file), memory_(memory), size_(size) { } | 214 : file_(file), memory_(memory), size_(size) { } |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 } | 659 } |
659 | 660 |
660 // This sampler is no longer the active sampler. | 661 // This sampler is no longer the active sampler. |
661 active_sampler_ = NULL; | 662 active_sampler_ = NULL; |
662 active_ = false; | 663 active_ = false; |
663 } | 664 } |
664 | 665 |
665 #endif // ENABLE_LOGGING_AND_PROFILING | 666 #endif // ENABLE_LOGGING_AND_PROFILING |
666 | 667 |
667 } } // namespace v8::internal | 668 } } // namespace v8::internal |
OLD | NEW |