Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for R_RISCV (0.12 sec)

  1. api/go1.11.txt

    pkg debug/elf, const R_RISCV_ALIGN = 43
    pkg debug/elf, const R_RISCV_ALIGN R_RISCV
    pkg debug/elf, const R_RISCV_BRANCH = 16
    pkg debug/elf, const R_RISCV_BRANCH R_RISCV
    pkg debug/elf, const R_RISCV_CALL = 18
    pkg debug/elf, const R_RISCV_CALL R_RISCV
    pkg debug/elf, const R_RISCV_CALL_PLT = 19
    pkg debug/elf, const R_RISCV_CALL_PLT R_RISCV
    pkg debug/elf, const R_RISCV_COPY = 4
    pkg debug/elf, const R_RISCV_COPY R_RISCV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	R_RISCV_PCREL_HI20    R_RISCV = 23 /* PC-relative reference */
    	R_RISCV_PCREL_LO12_I  R_RISCV = 24 /* PC-relative reference */
    	R_RISCV_PCREL_LO12_S  R_RISCV = 25 /* PC-relative reference */
    	R_RISCV_HI20          R_RISCV = 26 /* Absolute address */
    	R_RISCV_LO12_I        R_RISCV = 27 /* Absolute address */
    	R_RISCV_LO12_S        R_RISCV = 28 /* Absolute address */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/sym/reloc.go

    		case sys.MIPS, sys.MIPS64:
    			return elf.R_MIPS(nr).String()
    		case sys.PPC64:
    			return elf.R_PPC64(nr).String()
    		case sys.S390X:
    			return elf.R_390(nr).String()
    		case sys.RISCV64:
    			return elf.R_RISCV(nr).String()
    		default:
    			panic("unreachable")
    		}
    	}
    
    	return r.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 15:33:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. api/go1.12.txt

    pkg crypto/tls, const VersionTLS13 = 772
    pkg crypto/tls, const VersionTLS13 ideal-int
    pkg crypto/tls, type RecordHeaderError struct, Conn net.Conn
    pkg debug/elf, const R_RISCV_32_PCREL = 57
    pkg debug/elf, const R_RISCV_32_PCREL R_RISCV
    pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT = 452
    pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT ideal-int
    pkg expvar, method (*Map) Delete(string)
    pkg go/doc, const PreserveAST = 4
    pkg go/doc, const PreserveAST Mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 21:21:53 UTC 2019
    - 13.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/riscv64/asm.go

    		// Specification:
    		//
    		//  https://github.com/riscv-non-isa/riscv-elf-psabi-doc/releases/download/v1.0/riscv-abi.pdf
    		//
    		var hiRel, loRel elf.R_RISCV
    		switch r.Type {
    		case objabi.R_RISCV_CALL, objabi.R_RISCV_PCREL_ITYPE:
    			hiRel, loRel = elf.R_RISCV_PCREL_HI20, elf.R_RISCV_PCREL_LO12_I
    		case objabi.R_RISCV_PCREL_STYPE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    	if err != nil {
    		return err
    	}
    
    	b := bytes.NewReader(rels)
    	var rela Rela64
    
    	for b.Len() > 0 {
    		binary.Read(b, f.ByteOrder, &rela)
    		symNo := rela.Info >> 32
    		t := R_RISCV(rela.Info & 0xffff)
    
    		if symNo == 0 || symNo > uint64(len(symbols)) {
    			continue
    		}
    		sym := &symbols[symNo-1]
    		if !canApplyRelocation(sym) {
    			continue
    		}
    
    		switch t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(R_MIPS).String", Method, 6},
    		{"(R_PPC).GoString", Method, 0},
    		{"(R_PPC).String", Method, 0},
    		{"(R_PPC64).GoString", Method, 5},
    		{"(R_PPC64).String", Method, 5},
    		{"(R_RISCV).GoString", Method, 11},
    		{"(R_RISCV).String", Method, 11},
    		{"(R_SPARC).GoString", Method, 0},
    		{"(R_SPARC).String", Method, 0},
    		{"(R_X86_64).GoString", Method, 0},
    		{"(R_X86_64).String", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top