Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for STRD (0.03 sec)

  1. src/internal/cpu/cpu_arm.go

    		{Name: "v7atomics", Feature: &ARM.HasV7Atomics},
    	}
    
    	// HWCAP feature bits
    	ARM.HasVFPv4 = isSet(HWCap, hwcap_VFPv4)
    	ARM.HasIDIVA = isSet(HWCap, hwcap_IDIVA)
    	// lpae is required to make the 64-bit instructions LDRD and STRD (and variants) atomic.
    	// See ARMv7 manual section B1.6.
    	// We also need at least a v7 chip, for the DMB instruction.
    	ARM.HasV7Atomics = isSet(HWCap, hwcap_LPAE) && isV7(Platform)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:38:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	STRBT_ZZ:          "STRBT.ZZ",
    	STRD_EQ:           "STRD.EQ",
    	STRD_NE:           "STRD.NE",
    	STRD_CS:           "STRD.CS",
    	STRD_CC:           "STRD.CC",
    	STRD_MI:           "STRD.MI",
    	STRD_PL:           "STRD.PL",
    	STRD_VS:           "STRD.VS",
    	STRD_VC:           "STRD.VC",
    	STRD_HI:           "STRD.HI",
    	STRD_LS:           "STRD.LS",
    	STRD_GE:           "STRD.GE",
    	STRD_LT:           "STRD.LT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
Back to top