Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for SUBU (0.02 sec)

  1. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "SUB", argLength: 2, reg: gp21, asm: "SUBU"},                                                                                              // arg0 - arg1
    		{name: "SUBconst", argLength: 1, reg: gp11, asm: "SUBU", aux: "Int32"},                                                                           // arg0 - auxInt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. src/cmd/link/internal/mips64/asm.go

    	plt.AddUint32(ctxt.Arch, 0x030ec023)               // subu  $24, $24, $14
    	plt.AddUint32(ctxt.Arch, 0x03e07825)               // move  $15, $31
    	plt.AddUint32(ctxt.Arch, 0x0018c0c2)               // srl   $24, $24, 3
    	plt.AddUint32(ctxt.Arch, 0x0320f809)               // jalr  $25
    	plt.AddUint32(ctxt.Arch, 0x2718fffe)               // subu  $24, $24, 2
    
    	if gotplt.Size() != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/runtime/asm_mipsx.s

    	MOVW	R2, 16(R29)	// save old g on stack
    	MOVW	(g_stack+stack_hi)(R2), R2
    	SUBU	R3, R2
    	MOVW	R2, 20(R29)	// save depth in old g stack (can't just save SP, as stack might be copied during a callback)
    	JAL	(R25)
    
    	// Restore g, stack pointer. R2 is return value.
    	MOVW	16(R29), g
    	JAL	runtime·save_g(SB)
    	MOVW	(g_stack+stack_hi)(g), R5
    	MOVW	20(R29), R6
    	SUBU	R6, R5
    	MOVW	R5, R29
    
    	MOVW	R2, ret+8(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top