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 #if defined(TARGET_ARCH_ARM) || defined(TARGET_ARCH_MIPS) | 18 #if defined(TARGET_ARCH_ARM) || defined(TARGET_ARCH_MIPS) |
19 DEFINE_FLAG(bool, use_far_branches, false, | 19 DEFINE_FLAG(bool, use_far_branches, false, |
20 "Enable far branches for ARM and MIPS"); | 20 "Enable far branches for ARM and MIPS"); |
21 #endif | 21 #endif |
22 | 22 |
23 DECLARE_FLAG(bool, disassemble); | 23 DECLARE_FLAG(bool, disassemble); |
24 DECLARE_FLAG(bool, disassemble_optimized); | 24 DECLARE_FLAG(bool, disassemble_optimized); |
25 | 25 |
26 static uword NewContents(intptr_t capacity) { | 26 static uword NewContents(intptr_t capacity) { |
27 Zone* zone = Isolate::Current()->current_zone(); | 27 Zone* zone = Thread::Current()->zone(); |
28 uword result = zone->AllocUnsafe(capacity); | 28 uword result = zone->AllocUnsafe(capacity); |
29 #if defined(DEBUG) | 29 #if defined(DEBUG) |
30 // Initialize the buffer with kBreakPointInstruction to force a break | 30 // Initialize the buffer with kBreakPointInstruction to force a break |
31 // point if we ever execute an uninitialized part of the code buffer. | 31 // point if we ever execute an uninitialized part of the code buffer. |
32 Assembler::InitializeMemoryWithBreakpoints(result, capacity); | 32 Assembler::InitializeMemoryWithBreakpoints(result, capacity); |
33 #endif | 33 #endif |
34 return result; | 34 return result; |
35 } | 35 } |
36 | 36 |
37 | 37 |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 result.SetObjectAt(i, *object_pool_[i].obj_); | 327 result.SetObjectAt(i, *object_pool_[i].obj_); |
328 } else { | 328 } else { |
329 result.SetRawValueAt(i, object_pool_[i].raw_value_); | 329 result.SetRawValueAt(i, object_pool_[i].raw_value_); |
330 } | 330 } |
331 } | 331 } |
332 return result.raw(); | 332 return result.raw(); |
333 } | 333 } |
334 | 334 |
335 | 335 |
336 } // namespace dart | 336 } // namespace dart |
OLD | NEW |