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

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

Issue 1417013007: Revert of Canonicalize handles for optimized compilation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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 | « src/arm/macro-assembler-arm.cc ('k') | src/compiler.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 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
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
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
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698