src/cpu/x86/vm/x86_32.ad
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8080650 Cdiff src/cpu/x86/vm/x86_32.ad

src/cpu/x86/vm/x86_32.ad

Print this page

        

*** 578,588 **** st->print("\n\t"); framesize -= wordSize; st->print("MOV [ESP + #%d], EBP\t# Save EBP",framesize); if (PreserveFramePointer) { st->print("\n\t"); ! st->print("MOV EBP, [ESP + #%d]\t# Save the caller's SP into EBP", (framesize + wordSize)); } } if (VerifyStackAtCalls) { st->print("\n\t"); --- 578,592 ---- st->print("\n\t"); framesize -= wordSize; st->print("MOV [ESP + #%d], EBP\t# Save EBP",framesize); if (PreserveFramePointer) { st->print("\n\t"); ! st->print("MOV EBP, ESP\t# Save the caller's SP into EBP"); ! if (framesize > 0) { ! st->print("\n\t"); ! st->print("ADD EBP, #%d", framesize); ! } } } if (VerifyStackAtCalls) { st->print("\n\t");
src/cpu/x86/vm/x86_32.ad
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File