Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cinc_csinc_64_condsel_cond (0.16 sec)

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

    func bfxil_bfm_64m_bitfield_cond(instr uint32) bool {
    	return uint8((instr>>10)&0x3f) >= uint8((instr>>16)&0x3f)
    }
    
    func cinc_csinc_32_condsel_cond(instr uint32) bool {
    	return instr&0x1f0000 != 0x1f0000 && instr&0xe000 != 0xe000 && instr&0x3e0 != 0x3e0 && (instr>>5)&0x1f == (instr>>16)&0x1f
    }
    
    func cinc_csinc_64_condsel_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

    	// CINC <Xd>, <Xn>, <cond>
    	{0xffe00c00, 0x9a800400, CINC, instArgs{arg_Xd, arg_Xn, arg_cond_NotAllowALNV_Invert}, cinc_csinc_64_condsel_cond},
    	// CSET <Xd>, <cond>
    	{0xffff0fe0, 0x9a9f07e0, CSET, instArgs{arg_Xd, arg_cond_NotAllowALNV_Invert}, csinc_general_cond},
    	// CSINC <Xd>, <Xn>, <Xm>, <cond>
    	{0xffe00c00, 0x9a800400, CSINC, instArgs{arg_Xd, arg_Xn, arg_Xm, arg_cond_AllowALNV_Normal}, nil},
    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