Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(492)

Side by Side Diff: src/platform-freebsd.cc

Issue 17222004: Nuke OS::ReleaseStore, use Release_Store instead (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Reverted erroneous changes Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform-cygwin.cc ('k') | src/platform-linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/platform-cygwin.cc ('k') | src/platform-linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698