Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FMOVB (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    			rno = uint16(r)
    		} else {
    			rno = uint16(inst.Args[0].(RegSP))
    		}
    		if rno <= uint16(WZR) {
    			op = "MOVWU" + suffix
    		} else if rno >= uint16(B0) && rno <= uint16(B31) {
    			op = "FMOVB" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(H0) && rno <= uint16(H31) {
    			op = "FMOVH" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/anames.go

    	"FDIVRL",
    	"FDIVRW",
    	"FDIVW",
    	"FFREE",
    	"FINCSTP",
    	"FINIT",
    	"FLD1",
    	"FLDCW",
    	"FLDENV",
    	"FLDL2E",
    	"FLDL2T",
    	"FLDLG2",
    	"FLDLN2",
    	"FLDPI",
    	"FLDZ",
    	"FMOVB",
    	"FMOVBP",
    	"FMOVD",
    	"FMOVDP",
    	"FMOVF",
    	"FMOVFP",
    	"FMOVL",
    	"FMOVLP",
    	"FMOVV",
    	"FMOVVP",
    	"FMOVW",
    	"FMOVWP",
    	"FMOVX",
    	"FMOVXP",
    	"FMULD",
    	"FMULDP",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		return roff(rm, 1, num)
    	case REG_UXTW <= r && r < REG_UXTX:
    		if a.Type == obj.TYPE_MEM {
    			if num == 0 {
    				// According to the arm64 specification, for instructions MOVB, MOVBU and FMOVB,
    				// the extension amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    				// But in Go, we don't distinguish between Rn.UXTW and Rn.UXTW<<0, so we encode it as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top