Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MB_NSH (0.19 sec)

  1. src/cmd/internal/obj/arm/list5.go

    		return "SPSR"
    
    	case REG_MB_SY:
    		return "MB_SY"
    	case REG_MB_ST:
    		return "MB_ST"
    	case REG_MB_ISH:
    		return "MB_ISH"
    	case REG_MB_ISHST:
    		return "MB_ISHST"
    	case REG_MB_NSH:
    		return "MB_NSH"
    	case REG_MB_NSHST:
    		return "MB_NSHST"
    	case REG_MB_OSH:
    		return "MB_OSH"
    	case REG_MB_OSHST:
    		return "MB_OSHST"
    	}
    
    	return fmt.Sprintf("Rgok(%d)", r-obj.RBaseARM)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arch.go

    	}
    
    	// special operands for DMB/DSB instructions
    	register["MB_SY"] = arm.REG_MB_SY
    	register["MB_ST"] = arm.REG_MB_ST
    	register["MB_ISH"] = arm.REG_MB_ISH
    	register["MB_ISHST"] = arm.REG_MB_ISHST
    	register["MB_NSH"] = arm.REG_MB_NSH
    	register["MB_NSHST"] = arm.REG_MB_NSHST
    	register["MB_OSH"] = arm.REG_MB_OSH
    	register["MB_OSHST"] = arm.REG_MB_OSHST
    
    	instructions := make(map[string]obj.As)
    	for i, s := range obj.Anames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top