Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for loong64 (0.06 sec)

  1. src/cmd/asm/internal/arch/loong64.go

    func IsLoong64AMO(op obj.As) bool {
    	return loong64.IsAtomicInst(op)
    }
    
    var loong64ElemExtMap = map[string]int16{
    	"B":  loong64.ARNG_B,
    	"H":  loong64.ARNG_H,
    	"W":  loong64.ARNG_W,
    	"V":  loong64.ARNG_V,
    	"BU": loong64.ARNG_BU,
    	"HU": loong64.ARNG_HU,
    	"WU": loong64.ARNG_WU,
    	"VU": loong64.ARNG_VU,
    }
    
    var loong64LsxArngExtMap = map[string]int16{
    	"B16": loong64.ARNG_16B,
    	"H8":  loong64.ARNG_8H,
    	"W4":  loong64.ARNG_4W,
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Aug 05 17:31:25 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/loong64.s

    WANG Xuerui <******@****.***> 1679394224 +0800
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 22 18:50:59 UTC 2023
    - 434 bytes
    - Viewed (0)
  3. buildscripts/checkdeps.sh

    		fi
    	done
    
    	return 0
    }
    
    assert_is_supported_arch() {
    	case "${ARCH}" in
    	x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64 | riscv64)
    		return
    		;;
    	*)
    		echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x, loong64, loongarch64, riscv64]"
    		exit 1
    		;;
    	esac
    }
    
    assert_is_supported_os() {
    	case "${KNAME}" in
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Jun 08 16:12:05 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top