| OLD | NEW |
| 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/assembler.h" | 5 #include "vm/assembler.h" |
| 6 | 6 |
| 7 #include "platform/utils.h" | 7 #include "platform/utils.h" |
| 8 #include "vm/cpu.h" | 8 #include "vm/cpu.h" |
| 9 #include "vm/heap.h" | 9 #include "vm/heap.h" |
| 10 #include "vm/memory_region.h" | 10 #include "vm/memory_region.h" |
| 11 #include "vm/os.h" | 11 #include "vm/os.h" |
| 12 #include "vm/zone.h" | 12 #include "vm/zone.h" |
| 13 | 13 |
| 14 namespace dart { | 14 namespace dart { |
| 15 | 15 |
| 16 DEFINE_FLAG(bool, code_comments, false, | 16 DEFINE_FLAG(bool, code_comments, false, |
| 17 "Include comments into code and disassembly"); | 17 "Include comments into code and disassembly"); |
| 18 // TODO(zra): Remove once far branches are enabled automatically on a |
| 19 // per-function basis. |
| 20 #if defined(TARGET_ARCH_ARM) || defined(TARGET_ARCH_MIPS) |
| 21 DEFINE_FLAG(bool, use_far_branches, false, "Enable far branches"); |
| 22 #endif |
| 18 | 23 |
| 19 | 24 |
| 20 static uword NewContents(intptr_t capacity) { | 25 static uword NewContents(intptr_t capacity) { |
| 21 Zone* zone = Isolate::Current()->current_zone(); | 26 Zone* zone = Isolate::Current()->current_zone(); |
| 22 uword result = zone->AllocUnsafe(capacity); | 27 uword result = zone->AllocUnsafe(capacity); |
| 23 #if defined(DEBUG) | 28 #if defined(DEBUG) |
| 24 // Initialize the buffer with kBreakPointInstruction to force a break | 29 // Initialize the buffer with kBreakPointInstruction to force a break |
| 25 // point if we ever execute an uninitialized part of the code buffer. | 30 // point if we ever execute an uninitialized part of the code buffer. |
| 26 Assembler::InitializeMemoryWithBreakpoints(result, capacity); | 31 Assembler::InitializeMemoryWithBreakpoints(result, capacity); |
| 27 #endif | 32 #endif |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 | 215 |
| 211 for (intptr_t i = 0; i < comments_.length(); i++) { | 216 for (intptr_t i = 0; i < comments_.length(); i++) { |
| 212 comments.SetPCOffsetAt(i, comments_[i]->pc_offset()); | 217 comments.SetPCOffsetAt(i, comments_[i]->pc_offset()); |
| 213 comments.SetCommentAt(i, comments_[i]->comment()); | 218 comments.SetCommentAt(i, comments_[i]->comment()); |
| 214 } | 219 } |
| 215 | 220 |
| 216 return comments; | 221 return comments; |
| 217 } | 222 } |
| 218 | 223 |
| 219 } // namespace dart | 224 } // namespace dart |
| OLD | NEW |