| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 | 79 |
| 80 static Mutex* limit_mutex = NULL; | 80 static Mutex* limit_mutex = NULL; |
| 81 | 81 |
| 82 | 82 |
| 83 void OS::PostSetUp() { | 83 void OS::PostSetUp() { |
| 84 POSIXPostSetUp(); | 84 POSIXPostSetUp(); |
| 85 } | 85 } |
| 86 | 86 |
| 87 | 87 |
| 88 void OS::ReleaseStore(volatile AtomicWord* ptr, AtomicWord value) { | |
| 89 __asm__ __volatile__("" : : : "memory"); | |
| 90 *ptr = value; | |
| 91 } | |
| 92 | |
| 93 | |
| 94 uint64_t OS::CpuFeaturesImpliedByPlatform() { | 88 uint64_t OS::CpuFeaturesImpliedByPlatform() { |
| 95 return 0; // FreeBSD runs on anything. | 89 return 0; // FreeBSD runs on anything. |
| 96 } | 90 } |
| 97 | 91 |
| 98 | 92 |
| 99 int OS::ActivationFrameAlignment() { | 93 int OS::ActivationFrameAlignment() { |
| 100 // 16 byte alignment on FreeBSD | 94 // 16 byte alignment on FreeBSD |
| 101 return 16; | 95 return 16; |
| 102 } | 96 } |
| 103 | 97 |
| (...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 limit_mutex = CreateMutex(); | 685 limit_mutex = CreateMutex(); |
| 692 } | 686 } |
| 693 | 687 |
| 694 | 688 |
| 695 void OS::TearDown() { | 689 void OS::TearDown() { |
| 696 delete limit_mutex; | 690 delete limit_mutex; |
| 697 } | 691 } |
| 698 | 692 |
| 699 | 693 |
| 700 } } // namespace v8::internal | 694 } } // namespace v8::internal |
| OLD | NEW |