Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for csinv_general_cond (0.31 sec)

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

    }
    
    func cneg_csneg_64_condsel_cond(instr uint32) bool {
    	return instr&0xe000 != 0xe000 && (instr>>5)&0x1f == (instr>>16)&0x1f
    }
    
    func csinc_general_cond(instr uint32) bool {
    	return instr&0xe000 != 0xe000
    }
    func csinv_general_cond(instr uint32) bool {
    	return instr&0xe000 != 0xe000
    }
    func dc_sys_cr_system_cond(instr uint32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// CSETM <Wd>, <cond>
    	{0xffff0fe0, 0x5a9f03e0, CSETM, instArgs{arg_Wd, arg_cond_NotAllowALNV_Invert}, csinv_general_cond},
    	// CSINV <Wd>, <Wn>, <Wm>, <cond>
    	{0xffe00c00, 0x5a800000, CSINV, instArgs{arg_Wd, arg_Wn, arg_Wm, arg_cond_AllowALNV_Normal}, nil},
    	// CINV <Xd>, <Xn>, <cond>
    	{0xffe00c00, 0xda800000, CINV, instArgs{arg_Xd, arg_Xn, arg_cond_NotAllowALNV_Invert}, cinv_csinv_64_condsel_cond},
    	// CSETM <Xd>, <cond>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
Back to top