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

Side by Side Diff: runtime/vm/allocation.cc

Issue 10869063: Add attributions so printf like functions can have their arguments checked. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebased Created 8 years, 3 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 | « runtime/platform/json.h ('k') | runtime/vm/assembler_ia32.h » ('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 (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/allocation.h" 5 #include "vm/allocation.h"
6 6
7 #include "platform/assert.h" 7 #include "platform/assert.h"
8 #include "vm/isolate.h" 8 #include "vm/isolate.h"
9 #include "vm/zone.h" 9 #include "vm/zone.h"
10 10
11 namespace dart { 11 namespace dart {
12 12
13 ZoneAllocated::~ZoneAllocated() { 13 ZoneAllocated::~ZoneAllocated() {
14 UNREACHABLE(); 14 UNREACHABLE();
15 } 15 }
16 16
17 void* ZoneAllocated::operator new(uword size) { 17 void* ZoneAllocated::operator new(uword size) {
18 Isolate* isolate = Isolate::Current(); 18 Isolate* isolate = Isolate::Current();
19 ASSERT(isolate != NULL); 19 ASSERT(isolate != NULL);
20 ASSERT(isolate->current_zone() != NULL); 20 ASSERT(isolate->current_zone() != NULL);
21 if (size > static_cast<uword>(kIntptrMax)) { 21 if (size > static_cast<uword>(kIntptrMax)) {
22 FATAL1("ZoneAllocated object has unexpectedly large size %uld", size); 22 FATAL1("ZoneAllocated object has unexpectedly large size %"Pu"", size);
23 } 23 }
24 return reinterpret_cast<void*>(isolate->current_zone()->AllocUnsafe(size)); 24 return reinterpret_cast<void*>(isolate->current_zone()->AllocUnsafe(size));
25 } 25 }
26 26
27 } // namespace dart 27 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/platform/json.h ('k') | runtime/vm/assembler_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698