Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SBC (0.02 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    // Note that these semantics differ from x86: the carry flag has the opposite
    // sense on a subtraction!
    //
    //	On amd64, C=1 represents a borrow, e.g. SBB on amd64 does x - y - C.
    //	On arm64, C=0 represents a borrow, e.g. SBC on arm64 does x - y - ^C.
    //	 (because it does x + ^y + C).
    //
    // See https://en.wikipedia.org/wiki/Carry_flag#Vs._borrow_flag
    type flagConstant uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top