Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for fsub (0.05 sec)

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

    			outputs: []outputInfo{
    				{0, 1073733624}, // R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R14 R15 R16 R17 R18 R19 R20 R21 R22 R23 R24 R25 R26 R27 R28 R29
    			},
    		},
    	},
    	{
    		name:   "FSUB",
    		argLen: 2,
    		asm:    ppc64.AFSUB,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 9223372032559808512}, // F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15 F16 F17 F18 F19 F20 F21 F22 F23 F24 F25 F26 F27 F28 F29 F30
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    	SRL	X6, X5, X7				// b3d36200
    	SRL	X5, X6					// 33535300
    	SRL	$1, X5, X6				// 13d31200
    	SRL	$1, X5					// 93d21200
    
    	SUB	X6, X5, X7				// b3836240
    	SUB	X5, X6					// 33035340
    	SUB	$-2047, X5, X6				// 1383f27f
    	SUB	$2048, X5, X6				// 13830280
    	SUB	$-2047, X5				// 9382f27f
    	SUB	$2048, X5				// 93820280
    
    	SRA	X6, X5, X7				// b3d36240
    	SRA	X5, X6					// 33535340
    	SRA	$1, X5, X6				// 13d31240
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/inst.go

    		return &inst{0x33, 0x5, 0x0, 0, 0x0}
    	case ASRLI:
    		return &inst{0x13, 0x5, 0x0, 0, 0x0}
    	case ASRLIW:
    		return &inst{0x1b, 0x5, 0x0, 0, 0x0}
    	case ASRLW:
    		return &inst{0x3b, 0x5, 0x0, 0, 0x0}
    	case ASUB:
    		return &inst{0x33, 0x0, 0x0, 1024, 0x20}
    	case ASUBW:
    		return &inst{0x3b, 0x0, 0x0, 1024, 0x20}
    	case ASW:
    		return &inst{0x23, 0x2, 0x0, 0, 0x0}
    	case AWFI:
    		return &inst{0x73, 0x0, 0x5, 261, 0x8}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/a.out.go

    	ASMULL
    	ASTLR
    	ASTLRB
    	ASTLRH
    	ASTLRW
    	ASTLXP
    	ASTLXPW
    	ASTLXR
    	ASTLXRB
    	ASTLXRH
    	ASTLXRW
    	ASTP
    	ASTPW
    	ASTXP
    	ASTXPW
    	ASTXR
    	ASTXRB
    	ASTXRH
    	ASTXRW
    	ASUB
    	ASUBS
    	ASUBSW
    	ASUBW
    	ASVC
    	ASWPAB
    	ASWPAD
    	ASWPAH
    	ASWPALB
    	ASWPALD
    	ASWPALH
    	ASWPALW
    	ASWPAW
    	ASWPB
    	ASWPD
    	ASWPH
    	ASWPLB
    	ASWPLD
    	ASWPLH
    	ASWPLW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.go

    				p.From.Offset = 0
    			}
    		}
    	}
    
    	switch p.As {
    	// Rewrite SUB constants into ADD.
    	case ASUBC:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDC
    		}
    
    	case ASUBCCC:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADDCCC
    		}
    
    	case ASUB:
    		if p.From.Type != obj.TYPE_CONST {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    		// order as they are in the specification: RS1, RS2, RS3, RD.
    		ins.rs1, ins.rs2 = ins.rs2, ins.rs1
    
    	case ANEG, ANEGW:
    		// NEG rs, rd -> SUB rs, X0, rd
    		ins.as = ASUB
    		if p.As == ANEGW {
    			ins.as = ASUBW
    		}
    		ins.rs1 = REG_ZERO
    		if ins.rd == obj.REG_NONE {
    			ins.rd = ins.rs2
    		}
    
    	case ANOT:
    		// NOT rs, rd -> XORI $-1, rs, rd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    	{AMOVWU, C_REG, C_NONE, C_NONE, C_REG, C_NONE, 14, 8, 0, NOTUSETMP},
    
    	{ASUB, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{ASUBV, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{AADD, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{AADDV, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{AAND, C_REG, C_REG, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    	{ASUB, C_REG, C_NONE, C_NONE, C_REG, C_NONE, 2, 4, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    			opset(ASRAWCC, r0)
    
    		case AEXTSWSLI:
    			opset(AEXTSWSLICC, r0)
    
    		case ASRAD: /* sraw Rb,Rs,Ra; srawi sh,Rs,Ra */
    			opset(ASRADCC, r0)
    
    		case ASUB: /* SUB Ra,Rb,Rd => subf Rd,ra,rb */
    			opset(ASUB, r0)
    
    			opset(ASUBCC, r0)
    			opset(ASUBV, r0)
    			opset(ASUBVCC, r0)
    			opset(ASUBCCC, r0)
    			opset(ASUBCV, r0)
    			opset(ASUBCVCC, r0)
    			opset(ASUBE, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. test/codegen/mathbits.go

    }
    
    // --------------- //
    //    bits.Sub*    //
    // --------------- //
    
    func Sub(x, y, ci uint) (r, co uint) {
    	// amd64:"NEGL","SBBQ","NEGQ"
    	// arm64:"NEGS","SBCS","NGC","NEG",-"ADD",-"SUB",-"CMP"
    	// loong64:"SUBV","SGTU"
    	// ppc64x:"SUBC", "SUBE", "SUBZE", "NEG"
    	// s390x:"SUBE"
    	// mips64:"SUBV","SGTU"
    	// riscv64: "SUB","SLTU"
    	return bits.Sub(x, y, ci)
    }
    
    func SubC(x, ci uint) (r, co uint) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/obj.go

    				p.From.Reg = REGZERO
    				break
    			}
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = ctxt.Float64Sym(f64)
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    	}
    
    	// Rewrite SUB constants into ADD.
    	switch p.As {
    	case ASUB:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    			p.As = AADD
    		}
    
    	case ASUBU:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Offset = -p.From.Offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top