Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dc_sys_cr_system_cond (0.13 sec)

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

    	return instr&0xe000 != 0xe000
    }
    func csinv_general_cond(instr uint32) bool {
    	return instr&0xe000 != 0xe000
    }
    func dc_sys_cr_system_cond(instr uint32) bool {
    	return sys_op_4((instr>>16)&0x7, 0x7, (instr>>8)&0xf, (instr>>5)&0x7) == sys_DC
    }
    
    func ic_sys_cr_system_cond(instr uint32) bool {
    	return sys_op_4((instr>>16)&0x7, 0x7, (instr>>8)&0xf, (instr>>5)&0x7) == sys_IC
    }
    
    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

    	// AT <at>, <Xt>
    	{0xfff8ff00, 0xd5087800, AT, instArgs{arg_sysop_AT_SYS_CR_system}, at_sys_cr_system_cond},
    	// DC <dc>, <Xt>
    	{0xfff8f000, 0xd5087000, DC, instArgs{arg_sysop_DC_SYS_CR_system}, dc_sys_cr_system_cond},
    	// IC <ic>, {<Xt>}
    	{0xfff8f000, 0xd5087000, IC, instArgs{arg_sysop_IC_SYS_CR_system}, ic_sys_cr_system_cond},
    	// TLBI <tlbi>, {<Xt>}
    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