Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Op386ADDL (0.28 sec)

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

    	// 386
    	[2]Op{Op386MOVBload, Op386ADDL}:  Op386MOVBloadidx1,
    	[2]Op{Op386MOVWload, Op386ADDL}:  Op386MOVWloadidx1,
    	[2]Op{Op386MOVLload, Op386ADDL}:  Op386MOVLloadidx1,
    	[2]Op{Op386MOVSSload, Op386ADDL}: Op386MOVSSloadidx1,
    	[2]Op{Op386MOVSDload, Op386ADDL}: Op386MOVSDloadidx1,
    
    	[2]Op{Op386MOVBstore, Op386ADDL}:  Op386MOVBstoreidx1,
    	[2]Op{Op386MOVWstore, Op386ADDL}:  Op386MOVWstoreidx1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:57 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. 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)
  3. 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