Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FCCMPE (0.16 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	FCCMPD AL, F8, F26, $0     <=>    fccmp d26, d8, #0x0, al
    	FCCMPS VS, F29, F4, $4     <=>    fccmp s4, s29, #0x4, vs
    	FCCMPED LE, F20, F5, $13   <=>    fccmpe d5, d20, #0xd, le
    	FCCMPES NE, F26, F10, $0   <=>    fccmpe s10, s26, #0x0, ne
    
    (6) CCMN, CCMNW, CCMP, CCMPW <cond>, <Rn>, $<imm>, $<nzcv>
    
    Examples:
    
    	CCMP MI, R22, $12, $13     <=>    ccmp x22, #0xc, #0xd, mi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	{0xffe00c10, 0x1e600400, FCCMP, instArgs{arg_Dn, arg_Dm, arg_immediate_0_15_nzcv, arg_cond_AllowALNV_Normal}, nil},
    	// FCCMPE <Sn>, <Sm>, #<nzcv>, <cond>
    	{0xffe00c10, 0x1e200410, FCCMPE, instArgs{arg_Sn, arg_Sm, arg_immediate_0_15_nzcv, arg_cond_AllowALNV_Normal}, nil},
    	// FCCMPE <Dn>, <Dm>, #<nzcv>, <cond>
    	{0xffe00c10, 0x1e600410, FCCMPE, instArgs{arg_Dn, arg_Dm, arg_immediate_0_15_nzcv, arg_cond_AllowALNV_Normal}, nil},
    	// FCMEQ <V><d>, <V><n>, <V><m>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    			if rno <= uint16(WZR) {
    				op += "W"
    			}
    		}
    		args[1] = fmt.Sprintf("(%s, %s)", args[1], args[2])
    		args[2] = args[3]
    		return op + " " + args[1] + ", " + args[2] + ", " + args[0]
    
    	case FCCMP, FCCMPE:
    		args[0], args[1] = args[1], args[0]
    		fallthrough
    
    	case FCMP, FCMPE:
    		if _, ok := inst.Args[1].(Imm); ok {
    			args[1] = "$(0.0)"
    		}
    		fallthrough
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"FCCMPE","Bits":"0|0|0|1|1|1|1|0|00:2|1|Rm:5|cond:4|0|1|Rn:5|1|nzcv:4","Arch":"Single-precision variant","Syntax":"FCCMPE <Sn>, <Sm>, #<nzcv>, <cond>","Code":"","Alias":""},
    {"Name":"FCCMPE","Bits":"0|0|0|1|1|1|1|0|01:2|1|Rm:5|cond:4|0|1|Rn:5|1|nzcv:4","Arch":"Double-precision variant","Syntax":"FCCMPE <Dn>, <Dm>, #<nzcv>, <cond>","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)
Back to top