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

Side by Side Diff: src/ia32/debug-ia32.cc

Issue 352583008: Rollback to Version 3.28.4 (based on bleeding_edge revision r22031) (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/ia32/full-codegen-ia32.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_IA32 7 #if V8_TARGET_ARCH_IA32
8 8
9 #include "src/codegen.h" 9 #include "src/codegen.h"
10 #include "src/debug.h" 10 #include "src/debug.h"
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 // -- edx : type feedback slot (smi) 173 // -- edx : type feedback slot (smi)
174 // -- edi : function 174 // -- edi : function
175 // ----------------------------------- 175 // -----------------------------------
176 Generate_DebugBreakCallHelper(masm, edx.bit() | edi.bit(), 176 Generate_DebugBreakCallHelper(masm, edx.bit() | edi.bit(),
177 0, false); 177 0, false);
178 } 178 }
179 179
180 180
181 void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) { 181 void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) {
182 // Register state for IC load call (from ic-ia32.cc). 182 // Register state for IC load call (from ic-ia32.cc).
183 Register receiver = LoadIC::ReceiverRegister(); 183 // ----------- S t a t e -------------
184 Register name = LoadIC::NameRegister(); 184 // -- ecx : name
185 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0, false); 185 // -- edx : receiver
186 // -----------------------------------
187 Generate_DebugBreakCallHelper(masm, ecx.bit() | edx.bit(), 0, false);
186 } 188 }
187 189
188 190
189 void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) { 191 void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) {
190 // Register state for IC store call (from ic-ia32.cc). 192 // Register state for IC store call (from ic-ia32.cc).
191 // ----------- S t a t e ------------- 193 // ----------- S t a t e -------------
192 // -- eax : value 194 // -- eax : value
193 // -- ecx : name 195 // -- ecx : name
194 // -- edx : receiver 196 // -- edx : receiver
195 // ----------------------------------- 197 // -----------------------------------
196 Generate_DebugBreakCallHelper( 198 Generate_DebugBreakCallHelper(
197 masm, eax.bit() | ecx.bit() | edx.bit(), 0, false); 199 masm, eax.bit() | ecx.bit() | edx.bit(), 0, false);
198 } 200 }
199 201
200 202
201 void DebugCodegen::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) { 203 void DebugCodegen::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
202 // Register state for keyed IC load call (from ic-ia32.cc). 204 // Register state for keyed IC load call (from ic-ia32.cc).
203 Register receiver = KeyedLoadIC::ReceiverRegister(); 205 // ----------- S t a t e -------------
204 Register name = KeyedLoadIC::NameRegister(); 206 // -- ecx : key
205 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0, false); 207 // -- edx : receiver
208 // -----------------------------------
209 Generate_DebugBreakCallHelper(masm, ecx.bit() | edx.bit(), 0, false);
206 } 210 }
207 211
208 212
209 void DebugCodegen::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) { 213 void DebugCodegen::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
210 // Register state for keyed IC load call (from ic-ia32.cc). 214 // Register state for keyed IC load call (from ic-ia32.cc).
211 // ----------- S t a t e ------------- 215 // ----------- S t a t e -------------
212 // -- eax : value 216 // -- eax : value
213 // -- ecx : key 217 // -- ecx : key
214 // -- edx : receiver 218 // -- edx : receiver
215 // ----------------------------------- 219 // -----------------------------------
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 } 327 }
324 328
325 329
326 const bool LiveEdit::kFrameDropperSupported = true; 330 const bool LiveEdit::kFrameDropperSupported = true;
327 331
328 #undef __ 332 #undef __
329 333
330 } } // namespace v8::internal 334 } } // namespace v8::internal
331 335
332 #endif // V8_TARGET_ARCH_IA32 336 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698