OLD | NEW |
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" |
(...skipping 18 matching lines...) Expand all Loading... |
29 generating_stub_(false), | 29 generating_stub_(false), |
30 #if DEBUG | 30 #if DEBUG |
31 allow_macro_instructions_(true), | 31 allow_macro_instructions_(true), |
32 #endif | 32 #endif |
33 has_frame_(false), | 33 has_frame_(false), |
34 use_real_aborts_(true), | 34 use_real_aborts_(true), |
35 sp_(jssp), | 35 sp_(jssp), |
36 tmp_list_(DefaultTmpList()), | 36 tmp_list_(DefaultTmpList()), |
37 fptmp_list_(DefaultFPTmpList()) { | 37 fptmp_list_(DefaultFPTmpList()) { |
38 if (isolate() != NULL) { | 38 if (isolate() != NULL) { |
39 code_object_ = | 39 code_object_ = Handle<Object>(isolate()->heap()->undefined_value(), |
40 Handle<Object>::New(isolate()->heap()->undefined_value(), isolate()); | 40 isolate()); |
41 } | 41 } |
42 } | 42 } |
43 | 43 |
44 | 44 |
45 CPURegList MacroAssembler::DefaultTmpList() { | 45 CPURegList MacroAssembler::DefaultTmpList() { |
46 return CPURegList(ip0, ip1); | 46 return CPURegList(ip0, ip1); |
47 } | 47 } |
48 | 48 |
49 | 49 |
50 CPURegList MacroAssembler::DefaultFPTmpList() { | 50 CPURegList MacroAssembler::DefaultFPTmpList() { |
(...skipping 5016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5067 } | 5067 } |
5068 | 5068 |
5069 | 5069 |
5070 #undef __ | 5070 #undef __ |
5071 | 5071 |
5072 | 5072 |
5073 } // namespace internal | 5073 } // namespace internal |
5074 } // namespace v8 | 5074 } // namespace v8 |
5075 | 5075 |
5076 #endif // V8_TARGET_ARCH_ARM64 | 5076 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |