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

src/cpu/x86/vm/x86_64.ad

Print this page

        

*** 865,875 **** st->print("\n\t"); framesize -= wordSize; st->print("movq [rsp + #%d], rbp\t# Save rbp",framesize); if (PreserveFramePointer) { st->print("\n\t"); ! st->print("movq rbp, [rsp + #%d]\t# Save the caller's SP into rbp", (framesize + wordSize)); } } if (VerifyStackAtCalls) { st->print("\n\t"); --- 865,879 ---- st->print("\n\t"); framesize -= wordSize; st->print("movq [rsp + #%d], rbp\t# Save rbp",framesize); if (PreserveFramePointer) { st->print("\n\t"); ! st->print("movq rbp, rsp\t# Save the caller's SP into rbp"); ! if (framesize > 0) { ! st->print("\n\t"); ! st->print("addq rbp, #%d", framesize); ! } } } if (VerifyStackAtCalls) { st->print("\n\t");
src/cpu/x86/vm/x86_64.ad
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File