Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Op386ADDL (0.2 sec)

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

    }
    
    // sequentialAddresses reports true if it can prove that x + n == y
    func sequentialAddresses(x, y *Value, n int64) bool {
    	if x == y && n == 0 {
    		return true
    	}
    	if x.Op == Op386ADDL && y.Op == Op386LEAL1 && y.AuxInt == n && y.Aux == nil &&
    		(x.Args[0] == y.Args[0] && x.Args[1] == y.Args[1] ||
    			x.Args[0] == y.Args[1] && x.Args[1] == y.Args[0]) {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    	Op386MOVSDstoreidx1
    	Op386MOVSDstoreidx8
    	Op386ADDSSload
    	Op386ADDSDload
    	Op386SUBSSload
    	Op386SUBSDload
    	Op386MULSSload
    	Op386MULSDload
    	Op386DIVSSload
    	Op386DIVSDload
    	Op386ADDL
    	Op386ADDLconst
    	Op386ADDLcarry
    	Op386ADDLconstcarry
    	Op386ADCL
    	Op386ADCLconst
    	Op386SUBL
    	Op386SUBLconst
    	Op386SUBLcarry
    	Op386SUBLconstcarry
    	Op386SBBL
    	Op386SBBLconst
    	Op386MULL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top