Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for BLR (0.04 sec)

  1. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    	// Restore R2
    	ld	2,24(1)
    
    	// Restore LR and pop stack
    	addi	1,1,32
    	ld 	0,16(1)
    	mtlr	0
    	blr
    
    .else
    
    // A stub for older binutils
    	.globl	notoc_func
    	.type	notoc_func, @function
    notoc_func:
    	// Return 1 to indicate the test was skipped.
    	li	3,1
    	blr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/doc.go

    	MOVZW $(20<<16), R8     <=>      movz w8, #20, lsl #16
    	MOVK $(0<<16), R10 will be reported as an error by the assembler.
    
    Special Cases.
    
    (1) umov is written as VMOV.
    
    (2) br is renamed JMP, blr is renamed CALL.
    
    (3) No need to add "W" suffix: LDARB, LDARH, LDAXRB, LDAXRH, LDTRH, LDXRB, LDXRH.
    
    (4) In Go assembly syntax, NOP is a zero-width pseudo-instruction serves generic purpose, nothing
    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/text/internal/language/lookup.go

    		}
    	}
    	var e ValueError
    	fmt.Fprint(bytes.NewBuffer([]byte(e.v[:])), n)
    	return 0, e
    }
    
    // normRegion returns a region if r is deprecated or 0 otherwise.
    // TODO: consider supporting BYS (-> BLR), CSK (-> 200 or CZ), PHI (-> PHL) and AFI (-> DJ).
    // TODO: consider mapping split up regions to new most populous one (like CLDR).
    func normRegion(r Region) Region {
    	m := regionOldMap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    	o(OP_NOP)                                  // nop (for TOC restore)
    
    	// Pop stack frame and return.
    	o(0xe8010000) // ld r0, 0(r1)
    	o(OP_MTLR_R0) // mtlr r0
    	o(0x38210020) // addi r1,r1,32
    	o(0x4e800020) // blr
    }
    
    // Rewrite ELF (v1 or v2) calls to _savegpr0_n, _savegpr1_n, _savefpr_n, _restfpr_n, _savevr_m, or
    // _restvr_m (14<=n<=31, 20<=m<=31). Redirect them to runtime.elf_restgpr0+(n-14)*4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    	{as: ABR, a6: C_BRAPIC, type_: 11, size: 8},                                      // b label; nop
    	{as: ABR, a6: C_LR, type_: 18, size: 4},                                          // blr
    	{as: ABR, a6: C_CTR, type_: 18, size: 4},                                         // bctr
    	{as: ABC, a1: C_U15CON, a2: C_CRBIT, a6: C_BRA, type_: 16, size: 4},              // bc bo, bi, label
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    		return 1<<31 | 5<<26
    	}
    
    	c.ctxt.Diag("%v: bad bra %v", p, a)
    	return 0
    }
    
    func (c *ctxt7) opbrr(p *obj.Prog, a obj.As) uint32 {
    	switch a {
    	case ABL:
    		return OPBLR(1) /* BLR */
    
    	case AB:
    		return OPBLR(0) /* BR */
    
    	case obj.ARET:
    		return OPBLR(2) /* RET */
    	}
    
    	c.ctxt.Diag("%v: bad brr %v", p, a)
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top