Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for vtoc (0.04 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	XCOFF_R_REL = 0x02 // A(sym-*) Relative to self
    	XCOFF_R_TOC = 0x03 // A(sym-TOC) Relative to TOC
    	XCOFF_R_TRL = 0x12 // A(sym-TOC) TOC Relative indirect load.
    
    	XCOFF_R_TRLA = 0x13 // A(sym-TOC) TOC Rel load address. modifiable inst
    	XCOFF_R_GL   = 0x05 // A(external TOC of sym) Global Linkage
    	XCOFF_R_TCL  = 0x06 // A(local TOC of sym) Local object TOC address
    	XCOFF_R_RL   = 0x0C // A(sym) Pos indirect load. modifiable instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    //
    // There are 3 cases today (as paraphrased from the ELFv2 document):
    //
    //  1. R2 holds the TOC pointer on entry. The call stub must save R2 into the ELFv2 TOC stack save slot.
    //
    //  2. R2 holds the TOC pointer on entry. The caller has already saved R2 to the TOC stack save slot.
    //
    //  3. R2 does not hold the TOC pointer on entry. The caller has no expectations of R2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    #toc>ul>li:last-of-type {
    	padding-bottom: 0;
    }
    
    #toc a {
    	font-style: normal;
    }
    
    #toc a:hover,
    #toc a:focus,
    #toc a:hover code,
    #toc a:focus code {
    	color: #1DA2BD;
    }
    
    #toc a:active {
    	text-decoration: none;
    }
    
    /* Site header specific styles */
    .hamburger {
    	background-color: transparent;
    	background-image: none;
    	border: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	if ctxt.IsPPC64() {
    		ctxt.mkArchSym("TOC", 0, &ctxt.TOC)
    
    		ctxt.DotTOC = make([]loader.Sym, ctxt.MaxVersion()+1)
    		for i := 0; i <= ctxt.MaxVersion(); i++ {
    			if i >= sym.SymVerABICount && i < sym.SymVerStatic { // these versions are not used currently
    				continue
    			}
    			ctxt.mkArchSymVec(".TOC.", i, ctxt.DotTOC)
    		}
    	}
    	if ctxt.IsElf() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. kotlin-js-store/yarn.lock

      resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab"
      integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==
      dependencies:
        "@webassemblyjs/ast" "1.11.6"
        "@webassemblyjs/helper-buffer" "1.11.6"
        "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
        "@webassemblyjs/helper-wasm-section" "1.11.6"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		if ppc64.NeedTOCpointer(base.Ctxt) {
    			// When compiling Go into PIC, the function we just
    			// called via pointer might have been implemented in
    			// a separate module and so overwritten the TOC
    			// pointer in R2; reload it.
    			q := s.Prog(ppc64.AMOVD)
    			q.From.Type = obj.TYPE_MEM
    			q.From.Offset = 24
    			q.From.Reg = ppc64.REGSP
    			q.To.Type = obj.TYPE_REG
    			q.To.Reg = ppc64.REG_R2
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	// (They may be actively dialing, but this conn is ready first.
    	// Chrome calls this socket late binding.
    	// See https://www.chromium.org/developers/design-documents/network-stack#TOC-Connection-Management.)
    	key := pconn.cacheKey
    	if q, ok := t.idleConnWait[key]; ok {
    		done := false
    		if pconn.alt == nil {
    			// HTTP/1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    	}
    	l.symPkg[i] = pkg
    }
    
    // SymLocalentry returns an offset in bytes of the "local entry" of a symbol.
    //
    // On PPC64, a value of 1 indicates the symbol does not use or preserve a TOC
    // pointer in R2, nor does it have a distinct local entry.
    func (l *Loader) SymLocalentry(i Sym) uint8 {
    	return l.localentry[i]
    }
    
    // SetSymLocalentry sets the "local entry" offset attribute for a symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top