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

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

Issue 1731743003: Move precompilation-related flags to flags list. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: make print_stop_message default false to fix build Created 4 years, 9 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/vm/aot_optimizer.cc ('k') | runtime/vm/assembler_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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_ARM) 6 #if defined(TARGET_ARCH_ARM)
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 !TARGET_OS_IOS
19 #error ARM cross-compile only supported on Linux 19 #error ARM cross-compile only supported on Linux
20 #endif 20 #endif
21 21
22 namespace dart { 22 namespace dart {
23 23
24 DECLARE_FLAG(bool, allow_absolute_addresses);
25 DECLARE_FLAG(bool, check_code_pointer); 24 DECLARE_FLAG(bool, check_code_pointer);
26 DECLARE_FLAG(bool, inline_alloc); 25 DECLARE_FLAG(bool, inline_alloc);
27 26
28 DEFINE_FLAG(bool, print_stop_message, true, "Print stop message.");
29
30 uint32_t Address::encoding3() const { 27 uint32_t Address::encoding3() const {
31 if (kind_ == Immediate) { 28 if (kind_ == Immediate) {
32 uint32_t offset = encoding_ & kOffset12Mask; 29 uint32_t offset = encoding_ & kOffset12Mask;
33 ASSERT(offset < 256); 30 ASSERT(offset < 256);
34 return (encoding_ & ~kOffset12Mask) | B22 | 31 return (encoding_ & ~kOffset12Mask) | B22 |
35 ((offset & 0xf0) << 4) | (offset & 0xf); 32 ((offset & 0xf0) << 4) | (offset & 0xf);
36 } 33 }
37 ASSERT(kind_ == IndexRegister); 34 ASSERT(kind_ == IndexRegister);
38 return encoding_; 35 return encoding_;
39 } 36 }
(...skipping 3642 matching lines...) Expand 10 before | Expand all | Expand 10 after
3682 3679
3683 3680
3684 const char* Assembler::FpuRegisterName(FpuRegister reg) { 3681 const char* Assembler::FpuRegisterName(FpuRegister reg) {
3685 ASSERT((0 <= reg) && (reg < kNumberOfFpuRegisters)); 3682 ASSERT((0 <= reg) && (reg < kNumberOfFpuRegisters));
3686 return fpu_reg_names[reg]; 3683 return fpu_reg_names[reg];
3687 } 3684 }
3688 3685
3689 } // namespace dart 3686 } // namespace dart
3690 3687
3691 #endif // defined TARGET_ARCH_ARM 3688 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/aot_optimizer.cc ('k') | runtime/vm/assembler_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698