Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for STURB (0.12 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    3. Go uses a series of MOV instructions as load and store.
    
    64-bit variant ldr, str, stur => MOVD;
    32-bit variant str, stur, ldrsw => MOVW;
    32-bit variant ldr => MOVWU;
    ldrb => MOVBU; ldrh => MOVHU;
    ldrsb, sturb, strb => MOVB;
    ldrsh, sturh, strh =>  MOVH.
    
    4. Go moves conditions into opcode suffix, like BLT.
    
    5. Go adds a V prefix for most floating-point and SIMD instructions, except cryptographic extension
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    				args[1] = fmt.Sprintf("$%s(SB)", s)
    			}
    		}
    	}
    
    	// Move addressing mode into opcode suffix.
    	suffix := ""
    	switch inst.Op {
    	case LDR, LDRB, LDRH, LDRSB, LDRSH, LDRSW, STR, STRB, STRH, STUR, STURB, STURH, LD1, ST1:
    		switch mem := inst.Args[1].(type) {
    		case MemImmediate:
    			switch mem.Mode {
    			case AddrOffset:
    				// no suffix
    			case AddrPreIndex:
    				suffix = ".W"
    			case AddrPostIndex, AddrPostReg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	STNP:      "STNP",
    	STP:       "STP",
    	STR:       "STR",
    	STRB:      "STRB",
    	STRH:      "STRH",
    	STTR:      "STTR",
    	STTRB:     "STTRB",
    	STTRH:     "STTRH",
    	STUR:      "STUR",
    	STURB:     "STURB",
    	STURH:     "STURH",
    	STXP:      "STXP",
    	STXR:      "STXR",
    	STXRB:     "STXRB",
    	STXRH:     "STXRH",
    	SUB:       "SUB",
    	SUBHN:     "SUBHN",
    	SUBHN2:    "SUBHN2",
    	SUBS:      "SUBS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"STUR","Bits":"11:2|1|1|1|0|0|0|0|0|0|imm9:9|0|0|Rn:5|Rt:5","Arch":"64-bit variant","Syntax":"STUR <Xt>, [<Xn|SP>{, #<simm>}]","Code":"","Alias":""},
    {"Name":"STURB","Bits":"0|0|1|1|1|0|0|0|0|0|0|imm9:9|0|0|Rn:5|Rt:5","Arch":"Unscaled offset variant","Syntax":"STURB <Wt>, [<Xn|SP>{, #<simm>}]","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
Back to top