Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OpAMD64ADDQ (0.34 sec)

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

    	[2]Op{OpAMD64MOVWstore, OpAMD64ADDQ}:  OpAMD64MOVWstoreidx1,
    	[2]Op{OpAMD64MOVLstore, OpAMD64ADDQ}:  OpAMD64MOVLstoreidx1,
    	[2]Op{OpAMD64MOVQstore, OpAMD64ADDQ}:  OpAMD64MOVQstoreidx1,
    	[2]Op{OpAMD64MOVSSstore, OpAMD64ADDQ}: OpAMD64MOVSSstoreidx1,
    	[2]Op{OpAMD64MOVSDstore, OpAMD64ADDQ}: OpAMD64MOVSDstoreidx1,
    
    	[2]Op{OpAMD64MOVBstoreconst, OpAMD64ADDQ}: OpAMD64MOVBstoreconstidx1,
    	[2]Op{OpAMD64MOVWstoreconst, OpAMD64ADDQ}: OpAMD64MOVWstoreconstidx1,
    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/rewriteAMD64.go

    		v.Op = OpAMD64ADDL
    		return true
    	case OpAdd32F:
    		v.Op = OpAMD64ADDSS
    		return true
    	case OpAdd64:
    		v.Op = OpAMD64ADDQ
    		return true
    	case OpAdd64F:
    		v.Op = OpAMD64ADDSD
    		return true
    	case OpAdd8:
    		v.Op = OpAMD64ADDL
    		return true
    	case OpAddPtr:
    		v.Op = OpAMD64ADDQ
    		return true
    	case OpAddr:
    		return rewriteValueAMD64_OpAddr(v)
    	case OpAnd16:
    		v.Op = OpAMD64ANDL
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    		(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
    	}
    	if x.Op == OpAMD64ADDQ && y.Op == OpAMD64LEAQ1 && 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)
  4. src/cmd/compile/internal/ssa/opGen.go

    	OpAMD64SUBSDloadidx8
    	OpAMD64MULSSloadidx1
    	OpAMD64MULSSloadidx4
    	OpAMD64MULSDloadidx1
    	OpAMD64MULSDloadidx8
    	OpAMD64DIVSSloadidx1
    	OpAMD64DIVSSloadidx4
    	OpAMD64DIVSDloadidx1
    	OpAMD64DIVSDloadidx8
    	OpAMD64ADDQ
    	OpAMD64ADDL
    	OpAMD64ADDQconst
    	OpAMD64ADDLconst
    	OpAMD64ADDQconstmodify
    	OpAMD64ADDLconstmodify
    	OpAMD64SUBQ
    	OpAMD64SUBL
    	OpAMD64SUBQconst
    	OpAMD64SUBLconst
    	OpAMD64MULQ
    	OpAMD64MULL
    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