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

Side by Side Diff: src/arm64/macro-assembler-arm64.cc

Issue 1476763002: Make whether or not a Code object should be created by masm explicit (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 5 years 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #if V8_TARGET_ARCH_ARM64 5 #if V8_TARGET_ARCH_ARM64
6 6
7 #include "src/base/bits.h" 7 #include "src/base/bits.h"
8 #include "src/base/division-by-constant.h" 8 #include "src/base/division-by-constant.h"
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
11 #include "src/debug/debug.h" 11 #include "src/debug/debug.h"
12 #include "src/register-configuration.h" 12 #include "src/register-configuration.h"
13 #include "src/runtime/runtime.h" 13 #include "src/runtime/runtime.h"
14 14
15 #include "src/arm64/frames-arm64.h" 15 #include "src/arm64/frames-arm64.h"
16 #include "src/arm64/macro-assembler-arm64.h" 16 #include "src/arm64/macro-assembler-arm64.h"
17 17
18 namespace v8 { 18 namespace v8 {
19 namespace internal { 19 namespace internal {
20 20
21 // Define a fake double underscore to use with the ASM_UNIMPLEMENTED macros. 21 // Define a fake double underscore to use with the ASM_UNIMPLEMENTED macros.
22 #define __ 22 #define __
23 23
24 24
25 MacroAssembler::MacroAssembler(Isolate* arg_isolate, 25 MacroAssembler::MacroAssembler(Isolate* arg_isolate, byte* buffer,
26 byte * buffer, 26 unsigned buffer_size, bool create_code_object)
27 unsigned buffer_size)
28 : Assembler(arg_isolate, buffer, buffer_size), 27 : Assembler(arg_isolate, buffer, buffer_size),
29 generating_stub_(false), 28 generating_stub_(false),
30 #if DEBUG 29 #if DEBUG
31 allow_macro_instructions_(true), 30 allow_macro_instructions_(true),
32 #endif 31 #endif
33 has_frame_(false), 32 has_frame_(false),
34 use_real_aborts_(true), 33 use_real_aborts_(true),
35 sp_(jssp), 34 sp_(jssp),
36 tmp_list_(DefaultTmpList()), 35 tmp_list_(DefaultTmpList()),
37 fptmp_list_(DefaultFPTmpList()) { 36 fptmp_list_(DefaultFPTmpList()) {
38 if (isolate() != NULL) { 37 if (create_code_object) {
39 code_object_ = 38 code_object_ =
40 Handle<Object>::New(isolate()->heap()->undefined_value(), isolate()); 39 Handle<Object>::New(isolate()->heap()->undefined_value(), isolate());
41 } 40 }
42 } 41 }
43 42
44 43
45 CPURegList MacroAssembler::DefaultTmpList() { 44 CPURegList MacroAssembler::DefaultTmpList() {
46 return CPURegList(ip0, ip1); 45 return CPURegList(ip0, ip1);
47 } 46 }
48 47
(...skipping 5025 matching lines...) Expand 10 before | Expand all | Expand 10 after
5074 } 5073 }
5075 5074
5076 5075
5077 #undef __ 5076 #undef __
5078 5077
5079 5078
5080 } // namespace internal 5079 } // namespace internal
5081 } // namespace v8 5080 } // namespace v8
5082 5081
5083 #endif // V8_TARGET_ARCH_ARM64 5082 #endif // V8_TARGET_ARCH_ARM64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698