Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for umul (0.06 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    	case FST, FSTP, FISTTP, FIST, FISTP, FBSTP:
    		if len(args) == 1 {
    			args = append(args, "st0")
    		}
    
    	case FLD, FXCH, FCOM, FCOMP, FIADD, FIMUL, FICOM, FICOMP, FISUBR, FIDIV, FUCOM, FUCOMP, FILD, FBLD, FADD, FMUL, FSUB, FSUBR, FISUB, FDIV, FDIVR, FIDIVR:
    		if len(args) == 1 {
    			args = []string{"st0", args[0]}
    		}
    
    	case MASKMOVDQU, MASKMOVQ, XLATB, OUTSB, OUTSW, OUTSD:
    	FixSegment:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/walk.go

    			// to be more precise here.
    			return len(n.Y.Init()) != 0
    
    		// When using soft-float, these ops might be rewritten to function calls
    		// so we ensure they are evaluated first.
    		case ir.OADD, ir.OSUB, ir.OMUL, ir.ONEG:
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.Type())
    		case ir.OLT, ir.OEQ, ir.ONE, ir.OLE, ir.OGE, ir.OGT:
    			n := n.(*ir.BinaryExpr)
    			return ssagen.Arch.SoftFloat && isSoftFloat(n.X.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/mips64.s

    	SUB	$-6512, R13	// 21ad1970
    	SUBU	$6512, R13	// 25ade690
    	SUBV	$9531, R16	// 6210dac5
    	SUBV	$-9531, R13	// 61ad253b
    	SUBVU	$9531, R16	// 6610dac5
    
    //	LMUL rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MUL	R19, R8		// 01130018
    	MULU	R21, R13	// 01b50019
    	MULV	R19, R8		// 0113001c
    	MULVU	R21, R13	// 01b5001d
    
    //	LDIV rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/cpu.go

    	AADDIW
    	ASLLIW
    	ASRLIW
    	ASRAIW
    	AADDW
    	ASLLW
    	ASRLW
    	ASUBW
    	ASRAW
    
    	// 5.3: Load and Store Instructions (RV64I)
    	ALD
    	ASD
    
    	// 7.1: Multiplication Operations
    	AMUL
    	AMULH
    	AMULHU
    	AMULHSU
    	AMULW
    	ADIV
    	ADIVU
    	AREM
    	AREMU
    	ADIVW
    	ADIVUW
    	AREMW
    	AREMUW
    
    	// 8.2: Load-Reserved/Store-Conditional Instructions
    	ALRD
    	ASCD
    	ALRW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/noder/noder.go

    	syntax.Lss: ir.OLT,
    	syntax.Leq: ir.OLE,
    	syntax.Gtr: ir.OGT,
    	syntax.Geq: ir.OGE,
    
    	syntax.Add: ir.OADD,
    	syntax.Sub: ir.OSUB,
    	syntax.Or:  ir.OOR,
    	syntax.Xor: ir.OXOR,
    
    	syntax.Mul:    ir.OMUL,
    	syntax.Div:    ir.ODIV,
    	syntax.Rem:    ir.OMOD,
    	syntax.And:    ir.OAND,
    	syntax.AndNot: ir.OANDNOT,
    	syntax.Shl:    ir.OLSH,
    	syntax.Shr:    ir.ORSH,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/config.go

    	useSSE         bool        // Use SSE for non-float operations
    	useAvg         bool        // Use optimizations that need Avg* operations
    	useHmul        bool        // Use optimizations that need Hmul* operations
    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    	BigEndian      bool        //
    	UseFMA         bool        // Use hardware FMA operation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/const.go

    			break
    		}
    
    		n := n.(*ir.UnaryExpr)
    		n.X = convlit(n.X, ot)
    		if n.X.Type() == nil {
    			n.SetType(nil)
    			return n
    		}
    		n.SetType(t)
    		return n
    
    	case ir.OADD, ir.OSUB, ir.OMUL, ir.ODIV, ir.OMOD, ir.OOR, ir.OXOR, ir.OAND, ir.OANDNOT, ir.OOROR, ir.OANDAND, ir.OCOMPLEX:
    		ot := operandType(n.Op(), t)
    		if ot == nil {
    			n = DefaultLit(n, nil)
    			break
    		}
    
    		var l, r ir.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DENBCDQ:        "denbcdq",
    	DENBCDQCC:      "denbcdq.",
    	DIEX:           "diex",
    	DIEXCC:         "diex.",
    	DIEXQCC:        "diexq.",
    	DIEXQ:          "diexq",
    	DMUL:           "dmul",
    	DMULCC:         "dmul.",
    	DMULQ:          "dmulq",
    	DMULQCC:        "dmulq.",
    	DQUA:           "dqua",
    	DQUACC:         "dqua.",
    	DQUAI:          "dquai",
    	DQUAICC:        "dquai.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"FMUL (scalar)","Bits":"0|0|0|1|1|1|1|0|00:2|1|Rm:5|0|0|0|0|1|0|Rn:5|Rd:5","Arch":"Single-precision variant","Syntax":"FMUL <Sd>, <Sn>, <Sm>","Code":"","Alias":""},
    {"Name":"FMUL (scalar)","Bits":"0|0|0|1|1|1|1|0|01:2|1|Rm:5|0|0|0|0|1|0|Rn:5|Rd:5","Arch":"Double-precision variant","Syntax":"FMUL <Dd>, <Dn>, <Dm>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/asm0.go

    	{AMOVV, C_REG, C_NONE, C_HI, 21, 4, 0, sys.MIPS64, 0},
    	{AMOVW, C_REG, C_NONE, C_LO, 21, 4, 0, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_LO, 21, 4, 0, sys.MIPS64, 0},
    
    	{AMUL, C_REG, C_REG, C_NONE, 22, 4, 0, 0, 0},
    	{AMUL, C_REG, C_REG, C_REG, 22, 4, 0, 0, 0},
    	{AMULV, C_REG, C_REG, C_NONE, 22, 4, 0, sys.MIPS64, 0},
    
    	{AADD, C_ADD0CON, C_REG, C_REG, 4, 4, 0, 0, 0},
    	{AADD, C_ADD0CON, C_NONE, C_REG, 4, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top