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

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

Issue 9209001: Move utils.h and utils.cc from runtime/vm to runtime/platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
OLDNEW
1 // Copyright (c) 2011, 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 "platform/utils.h"
5 #include "vm/debuginfo.h" 6 #include "vm/debuginfo.h"
Mads Ager (chromium) 2012/01/13 15:10:09 Keep as first line.
Søren Gjesse 2012/01/16 10:53:00 Done.
6
7 #include "vm/gdbjit_linux.h" 7 #include "vm/gdbjit_linux.h"
8 #include "vm/os.h" 8 #include "vm/os.h"
9 #include "vm/utils.h"
10 #include "vm/thread.h" 9 #include "vm/thread.h"
11 10
12 namespace dart { 11 namespace dart {
13 12
14 // ----------------------------------------------------------------------------- 13 // -----------------------------------------------------------------------------
15 // Implementation of ElfGen 14 // Implementation of ElfGen
16 // 15 //
17 // Specification documents: 16 // Specification documents:
18 // http://refspecs.freestandards.org 17 // http://refspecs.freestandards.org
19 // 18 //
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 delete dynamic_region; 549 delete dynamic_region;
551 delete elf_section; 550 delete elf_section;
552 } 551 }
553 552
554 553
555 void DebugInfo::UnregisterAllSections() { 554 void DebugInfo::UnregisterAllSections() {
556 ::deleteDynamicSections(); 555 ::deleteDynamicSections();
557 } 556 }
558 557
559 } // namespace dart 558 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698