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

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

Issue 14253015: Skip samples where top function's stack frame is not setup properly (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Supported other archs Created 7 years, 7 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 __ bind(&do_not_pad); 197 __ bind(&do_not_pad);
198 } 198 }
199 } 199 }
200 200
201 info()->set_prologue_offset(masm_->pc_offset()); 201 info()->set_prologue_offset(masm_->pc_offset());
202 if (NeedsEagerFrame()) { 202 if (NeedsEagerFrame()) {
203 ASSERT(!frame_is_built_); 203 ASSERT(!frame_is_built_);
204 frame_is_built_ = true; 204 frame_is_built_ = true;
205 __ push(ebp); // Caller's frame pointer. 205 __ push(ebp); // Caller's frame pointer.
206 __ mov(ebp, esp); 206 __ mov(ebp, esp);
207 info()->AddNoFrameRange(0, masm_->pc_offset());
207 __ push(esi); // Callee's context. 208 __ push(esi); // Callee's context.
208 if (info()->IsStub()) { 209 if (info()->IsStub()) {
209 __ push(Immediate(Smi::FromInt(StackFrame::STUB))); 210 __ push(Immediate(Smi::FromInt(StackFrame::STUB)));
210 } else { 211 } else {
211 __ push(edi); // Callee's JS function. 212 __ push(edi); // Callee's JS function.
212 } 213 }
213 } 214 }
214 215
215 if (info()->IsOptimizing() && 216 if (info()->IsOptimizing() &&
216 dynamic_frame_alignment_ && 217 dynamic_frame_alignment_ &&
(...skipping 2595 matching lines...) Expand 10 before | Expand all | Expand 10 after
2812 MemOperand(esp, count * kDoubleSize)); 2813 MemOperand(esp, count * kDoubleSize));
2813 save_iterator.Advance(); 2814 save_iterator.Advance();
2814 count++; 2815 count++;
2815 } 2816 }
2816 } 2817 }
2817 if (dynamic_frame_alignment_) { 2818 if (dynamic_frame_alignment_) {
2818 // Fetch the state of the dynamic frame alignment. 2819 // Fetch the state of the dynamic frame alignment.
2819 __ mov(edx, Operand(ebp, 2820 __ mov(edx, Operand(ebp,
2820 JavaScriptFrameConstants::kDynamicAlignmentStateOffset)); 2821 JavaScriptFrameConstants::kDynamicAlignmentStateOffset));
2821 } 2822 }
2823 int no_frame_start = -1;
2822 if (NeedsEagerFrame()) { 2824 if (NeedsEagerFrame()) {
2823 __ mov(esp, ebp); 2825 __ mov(esp, ebp);
2824 __ pop(ebp); 2826 __ pop(ebp);
2827 no_frame_start = masm_->pc_offset();
2825 } 2828 }
2826 if (dynamic_frame_alignment_) { 2829 if (dynamic_frame_alignment_) {
2827 Label no_padding; 2830 Label no_padding;
2828 __ cmp(edx, Immediate(kNoAlignmentPadding)); 2831 __ cmp(edx, Immediate(kNoAlignmentPadding));
2829 __ j(equal, &no_padding); 2832 __ j(equal, &no_padding);
2830 2833
2831 EmitReturn(instr, true); 2834 EmitReturn(instr, true);
2832 __ bind(&no_padding); 2835 __ bind(&no_padding);
2833 } 2836 }
2834 2837
2835 EmitReturn(instr, false); 2838 EmitReturn(instr, false);
2839 if (no_frame_start != -1) {
2840 info()->AddNoFrameRange(no_frame_start, masm_->pc_offset());
2841 }
2836 } 2842 }
2837 2843
2838 2844
2839 void LCodeGen::DoLoadGlobalCell(LLoadGlobalCell* instr) { 2845 void LCodeGen::DoLoadGlobalCell(LLoadGlobalCell* instr) {
2840 Register result = ToRegister(instr->result()); 2846 Register result = ToRegister(instr->result());
2841 __ mov(result, Operand::Cell(instr->hydrogen()->cell())); 2847 __ mov(result, Operand::Cell(instr->hydrogen()->cell()));
2842 if (instr->hydrogen()->RequiresHoleCheck()) { 2848 if (instr->hydrogen()->RequiresHoleCheck()) {
2843 __ cmp(result, factory()->the_hole_value()); 2849 __ cmp(result, factory()->the_hole_value());
2844 DeoptimizeIf(equal, instr->environment()); 2850 DeoptimizeIf(equal, instr->environment());
2845 } 2851 }
(...skipping 3794 matching lines...) Expand 10 before | Expand all | Expand 10 after
6640 FixedArray::kHeaderSize - kPointerSize)); 6646 FixedArray::kHeaderSize - kPointerSize));
6641 __ bind(&done); 6647 __ bind(&done);
6642 } 6648 }
6643 6649
6644 6650
6645 #undef __ 6651 #undef __
6646 6652
6647 } } // namespace v8::internal 6653 } } // namespace v8::internal
6648 6654
6649 #endif // V8_TARGET_ARCH_IA32 6655 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698