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

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

Issue 1411383004: Enable generation of instruction buffer on precompilation (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Address more CL concerns Created 5 years, 2 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
« no previous file with comments | « runtime/tools/create_snapshot_bin.py ('k') | runtime/vm/cpu_arm64.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 (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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/globals.h" // NOLINT 5 #include "vm/globals.h" // NOLINT
6 #if defined(TARGET_ARCH_ARM64) 6 #if defined(TARGET_ARCH_ARM64)
7 7
8 #include "vm/assembler.h" 8 #include "vm/assembler.h"
9 #include "vm/cpu.h" 9 #include "vm/cpu.h"
10 #include "vm/longjump.h" 10 #include "vm/longjump.h"
11 #include "vm/runtime_entry.h" 11 #include "vm/runtime_entry.h"
12 #include "vm/simulator.h" 12 #include "vm/simulator.h"
13 #include "vm/stack_frame.h" 13 #include "vm/stack_frame.h"
14 #include "vm/stub_code.h" 14 #include "vm/stub_code.h"
15 15
16 // An extra check since we are assuming the existence of /proc/cpuinfo below. 16 // An extra check since we are assuming the existence of /proc/cpuinfo below.
17 #if !defined(USING_SIMULATOR) && !defined(__linux__) && !defined(ANDROID) 17 #if !defined(USING_SIMULATOR) && !defined(__linux__) && !defined(ANDROID) && \
18 !TARGET_OS_IOS
18 #error ARM64 cross-compile only supported on Linux 19 #error ARM64 cross-compile only supported on Linux
19 #endif 20 #endif
20 21
21 namespace dart { 22 namespace dart {
22 23
23 DECLARE_FLAG(bool, allow_absolute_addresses); 24 DECLARE_FLAG(bool, allow_absolute_addresses);
24 DEFINE_FLAG(bool, use_far_branches, false, "Always use far branches"); 25 DEFINE_FLAG(bool, use_far_branches, false, "Always use far branches");
25 DEFINE_FLAG(bool, print_stop_message, false, "Print stop message."); 26 DEFINE_FLAG(bool, print_stop_message, false, "Print stop message.");
26 DECLARE_FLAG(bool, inline_alloc); 27 DECLARE_FLAG(bool, inline_alloc);
27 28
(...skipping 1432 matching lines...) Expand 10 before | Expand all | Expand 10 after
1460 add(base, array, Operand(index, LSL, shift)); 1461 add(base, array, Operand(index, LSL, shift));
1461 } 1462 }
1462 const OperandSize size = Address::OperandSizeFor(cid); 1463 const OperandSize size = Address::OperandSizeFor(cid);
1463 ASSERT(Address::CanHoldOffset(offset, Address::Offset, size)); 1464 ASSERT(Address::CanHoldOffset(offset, Address::Offset, size));
1464 return Address(base, offset, Address::Offset, size); 1465 return Address(base, offset, Address::Offset, size);
1465 } 1466 }
1466 1467
1467 } // namespace dart 1468 } // namespace dart
1468 1469
1469 #endif // defined TARGET_ARCH_ARM64 1470 #endif // defined TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « runtime/tools/create_snapshot_bin.py ('k') | runtime/vm/cpu_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698