Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for R_RISCV_PCREL_ITYPE (0.38 sec)

  1. src/cmd/link/internal/riscv64/asm.go

    	var hi20Syms []loader.Sym
    	for _, s := range ctxt.Textp {
    		relocs := ldr.Relocs(s)
    		for ri := 0; ri < relocs.Count(); ri++ {
    			r := relocs.At(ri)
    			if r.Type() != objabi.R_RISCV_CALL && r.Type() != objabi.R_RISCV_PCREL_ITYPE &&
    				r.Type() != objabi.R_RISCV_PCREL_STYPE && r.Type() != objabi.R_RISCV_TLS_IE {
    				continue
    			}
    			if r.Off() == 0 && ldr.SymType(s) == sym.STEXT {
    				// Use the symbol for the function instead of creating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/reloctype.go

    	R_RISCV_JAL_TRAMP
    
    	// R_RISCV_CALL resolves a 32 bit PC-relative address for an AUIPC + JALR
    	// instruction pair.
    	R_RISCV_CALL
    
    	// R_RISCV_PCREL_ITYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + I-type instruction pair.
    	R_RISCV_PCREL_ITYPE
    
    	// R_RISCV_PCREL_STYPE resolves a 32 bit PC-relative address for an
    	// AUIPC + S-type instruction pair.
    	R_RISCV_PCREL_STYPE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/cpu.go

    	// R_RISCV_CALL relocation.
    	NEED_CALL_RELOC
    
    	// NEED_PCREL_ITYPE_RELOC is set on AUIPC instructions to indicate that
    	// it is the first instruction in an AUIPC + I-type pair that needs a
    	// R_RISCV_PCREL_ITYPE relocation.
    	NEED_PCREL_ITYPE_RELOC
    
    	// NEED_PCREL_STYPE_RELOC is set on AUIPC instructions to indicate that
    	// it is the first instruction in an AUIPC + S-type pair that needs a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top