Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Op386ADDL (0.56 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/rewrite386.go

    	case Op386XORLload:
    		return rewriteValue386_Op386XORLload(v)
    	case Op386XORLmodify:
    		return rewriteValue386_Op386XORLmodify(v)
    	case OpAdd16:
    		v.Op = Op386ADDL
    		return true
    	case OpAdd32:
    		v.Op = Op386ADDL
    		return true
    	case OpAdd32F:
    		v.Op = Op386ADDSS
    		return true
    	case OpAdd32carry:
    		v.Op = Op386ADDLcarry
    		return true
    	case OpAdd32withcarry:
    		v.Op = Op386ADCL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/x86/ssa.go

    	p := s.Prog(op)
    	p.From.Type = obj.TYPE_REG
    	p.To.Type = obj.TYPE_REG
    	p.To.Reg = dest
    	p.From.Reg = src
    	return p
    }
    
    func ssaGenValue(s *ssagen.State, v *ssa.Value) {
    	switch v.Op {
    	case ssa.Op386ADDL:
    		r := v.Reg()
    		r1 := v.Args[0].Reg()
    		r2 := v.Args[1].Reg()
    		switch {
    		case r == r1:
    			p := s.Prog(v.Op.Asm())
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = r2
    			p.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. 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)
  5. 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