Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for r13 (0.51 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	CSINV	HS, R1, R2, R3	// 232082da
    	CSINVW	MI, R2, ZR, R2	// 42409f5a
    	CINC	EQ, R4, R9	// 8914849a
    	CINCW	PL, R2, ZR	// 5f44821a
    	CINV	PL, R11, R22	// 76418bda
    	CINVW	LS, R7, R13	// ed80875a
    	CNEG	LS, R13, R7	// a7858dda
    	CNEGW	EQ, R8, R13	// 0d15885a
    
    // atomic ops
    	LDARB	(R25), R2                            // 22ffdf08
    	LDARH	(R5), R7                             // a7fcdf48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	// faster than having the caller spill these.
    	MOVQ	R12, 96(SP)
    	MOVQ	R13, 104(SP)
    retry:
    	// TODO: Consider passing g.m.p in as an argument so they can be shared
    	// across a sequence of write barriers.
    	MOVQ	g_m(R14), R13
    	MOVQ	m_p(R13), R13
    	// Get current buffer write position.
    	MOVQ	(p_wbBuf+wbBuf_next)(R13), R12	// original next position
    	ADDQ	R11, R12			// new next position
    	// Is the buffer full?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    			ldr.Errorf(s, "R_POWER_TLS reloc only supports XO form ADD, not %08X", val)
    		}
    		// Verify RB is R13 in ADD RA,RB,RT.
    		if (val>>11)&0x1F != 13 {
    			// If external linking is made to support this, it may expect the linker to rewrite RB.
    			ldr.Errorf(s, "R_POWER_TLS reloc requires R13 in RB (%08X).", uint32(val))
    		}
    		return val, nExtReloc, true
    
    	case objabi.R_POWER_TLS_IE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    // Be careful when hand coding regmasks.
    var regNamesARM64 = []string{
    	"R0",
    	"R1",
    	"R2",
    	"R3",
    	"R4",
    	"R5",
    	"R6",
    	"R7",
    	"R8",
    	"R9",
    	"R10",
    	"R11",
    	"R12",
    	"R13",
    	"R14",
    	"R15",
    	"R16",
    	"R17",
    	"R18", // platform register, not used
    	"R19",
    	"R20",
    	"R21",
    	"R22",
    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	// R27 = REGTMP not used in regalloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    		}
    		o1 |= (uint32(p.From.Reg) & 15) << 16
    		o1 |= (uint32(p.Reg) & 15) << 0
    		o1 |= (uint32(p.To.Reg) & 15) << 12
    		o1 |= ((uint32(p.Scond) & C_SCOND) ^ C_SCOND_XOR) << 28
    
    	case 41: /* rfe -> movm.s.w.u 0(r13),[r15] */
    		o1 = 0xe8fd8000
    
    	case 50: /* floating point store */
    		v := c.regoff(&p.To)
    
    		r := int(p.To.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top