Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for d16 (0.03 sec)

  1. test/fixedbugs/issue5809.go

    // issue 5809: 6g and 8g attempted to constant propagate indexed LEA
    
    package main
    
    import "fmt"
    
    func main() {
    	const d16 = "0123456789ABCDEF"
    	k := 0x1234
    	var x [4]byte
    	
    	x[0] = d16[k>>12&0xf]
    	x[1] = d16[k>>8&0xf]
    	x[2] = d16[k>>4&0xf]
    	x[3] = d16[k&0xf]
    	
    	if x != [4]byte{'1','2','3','4'} {
    		fmt.Println(x)
    		panic("x != [4]byte{'1','2','3','4'}")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 529 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/doc.go

    Go reverses the arguments of most instructions.
    
    Examples:
    
    	ADD R11.SXTB<<1, RSP, R25      <=>      add x25, sp, w11, sxtb #1
    	VADD V16, V19, V14             <=>      add d14, d19, d16
    
    Special Cases.
    
    (1) Argument order is the same as in the GNU ARM64 syntax: cbz, cbnz and some store instructions,
    such as str, stur, strb, sturb, strh, sturh stlr, stlrb. stlrh, st1.
    
    Examples:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    	S23
    	S24
    	S25
    	S26
    	S27
    	S28
    	S29
    	S30
    	S31
    
    	D0
    	D1
    	D2
    	D3
    	D4
    	D5
    	D6
    	D7
    	D8
    	D9
    	D10
    	D11
    	D12
    	D13
    	D14
    	D15
    	D16
    	D17
    	D18
    	D19
    	D20
    	D21
    	D22
    	D23
    	D24
    	D25
    	D26
    	D27
    	D28
    	D29
    	D30
    	D31
    
    	APSR
    	APSR_nzcv
    	FPSCR
    
    	SP = R13
    	LR = R14
    	PC = R15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	S23
    	S24
    	S25
    	S26
    	S27
    	S28
    	S29
    	S30
    	S31
    
    	D0
    	D1
    	D2
    	D3
    	D4
    	D5
    	D6
    	D7
    	D8
    	D9
    	D10
    	D11
    	D12
    	D13
    	D14
    	D15
    	D16
    	D17
    	D18
    	D19
    	D20
    	D21
    	D22
    	D23
    	D24
    	D25
    	D26
    	D27
    	D28
    	D29
    	D30
    	D31
    
    	Q0
    	Q1
    	Q2
    	Q3
    	Q4
    	Q5
    	Q6
    	Q7
    	Q8
    	Q9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "GNU C 4.9.2 20141224 (prerelease) -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 -mtls-dialect=gnu -g", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "go-relocation-test-gcc492.c", Class: dwarf.ClassString},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top