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

Side by Side Diff: src/x64/lithium-codegen-x64.cc

Issue 1029643002: Move CompilationInfo::this_has_uses to HGraph::this_has_uses. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-compiler-12
Patch Set: Created 5 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 | « src/ppc/lithium-codegen-ppc.cc ('k') | src/x87/lithium-codegen-x87.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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_X64 7 #if V8_TARGET_ARCH_X64
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/code-factory.h" 10 #include "src/code-factory.h"
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 #ifdef DEBUG 123 #ifdef DEBUG
124 if (strlen(FLAG_stop_at) > 0 && 124 if (strlen(FLAG_stop_at) > 0 &&
125 info_->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) { 125 info_->function()->name()->IsUtf8EqualTo(CStrVector(FLAG_stop_at))) {
126 __ int3(); 126 __ int3();
127 } 127 }
128 #endif 128 #endif
129 129
130 // Sloppy mode functions need to replace the receiver with the global proxy 130 // Sloppy mode functions need to replace the receiver with the global proxy
131 // when called as functions (without an explicit receiver object). 131 // when called as functions (without an explicit receiver object).
132 if (info_->this_has_uses() && is_sloppy(info_->language_mode()) && 132 if (graph()->this_has_uses() && is_sloppy(info_->language_mode()) &&
133 !info_->is_native()) { 133 !info_->is_native()) {
134 Label ok; 134 Label ok;
135 StackArgumentsAccessor args(rsp, scope()->num_parameters()); 135 StackArgumentsAccessor args(rsp, scope()->num_parameters());
136 __ movp(rcx, args.GetReceiverOperand()); 136 __ movp(rcx, args.GetReceiverOperand());
137 137
138 __ CompareRoot(rcx, Heap::kUndefinedValueRootIndex); 138 __ CompareRoot(rcx, Heap::kUndefinedValueRootIndex);
139 __ j(not_equal, &ok, Label::kNear); 139 __ j(not_equal, &ok, Label::kNear);
140 140
141 __ movp(rcx, GlobalObjectOperand()); 141 __ movp(rcx, GlobalObjectOperand());
142 __ movp(rcx, FieldOperand(rcx, GlobalObject::kGlobalProxyOffset)); 142 __ movp(rcx, FieldOperand(rcx, GlobalObject::kGlobalProxyOffset));
(...skipping 5790 matching lines...) Expand 10 before | Expand all | Expand 10 after
5933 CallRuntime(Runtime::kPushBlockContext, 2, instr); 5933 CallRuntime(Runtime::kPushBlockContext, 2, instr);
5934 RecordSafepoint(Safepoint::kNoLazyDeopt); 5934 RecordSafepoint(Safepoint::kNoLazyDeopt);
5935 } 5935 }
5936 5936
5937 5937
5938 #undef __ 5938 #undef __
5939 5939
5940 } } // namespace v8::internal 5940 } } // namespace v8::internal
5941 5941
5942 #endif // V8_TARGET_ARCH_X64 5942 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/ppc/lithium-codegen-ppc.cc ('k') | src/x87/lithium-codegen-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698