Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for ctxt (0.08 sec)

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

    //
    // The job of appending the moduledata is delegated to runtime.addmoduledata.
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    	if initfunc == nil {
    		return
    	}
    
    	// larl %r2, <local.moduledata>
    	initfunc.AddUint8(0xc0)
    	initfunc.AddUint8(0x20)
    	initfunc.AddSymRef(ctxt.Arch, ctxt.Moduledata, 6, objabi.R_PCREL, 4)
    	r1 := initfunc.Relocs()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticdata/data.go

    		case types.TCOMPLEX64:
    			s.WriteFloat32(base.Ctxt, noff, float32(re))
    			s.WriteFloat32(base.Ctxt, noff+4, float32(im))
    		case types.TCOMPLEX128:
    			s.WriteFloat64(base.Ctxt, noff, re)
    			s.WriteFloat64(base.Ctxt, noff+8, im)
    		}
    
    	case constant.String:
    		i := constant.StringVal(u)
    		symdata := StringSym(n.Pos(), i)
    		s.WriteAddr(base.Ctxt, noff, types.PtrSize, symdata, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/asm.go

    				trampb := ldr.MakeSymbolUpdater(tramp)
    				ctxt.AddTramp(trampb)
    				if ctxt.DynlinkingGo() || ldr.SymType(rs) == sym.SDYNIMPORT {
    					if immrot(uint32(offset)) == 0 {
    						ctxt.Errorf(s, "odd offset in dynlink direct call: %v+%d", ldr.SymName(rs), offset)
    					}
    					gentrampdyn(ctxt.Arch, trampb, rs, int64(offset))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    	 && (ptr.Op != OpSB || !config.ctxt.Flag_shared) => (MOVBload  [off1+int32(off2)] {sym} ptr mem)
    (MOVBUload [off1] {sym} (ADDVconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    	 && (ptr.Op != OpSB || !config.ctxt.Flag_shared) => (MOVBUload [off1+int32(off2)] {sym} ptr mem)
    (MOVHload  [off1] {sym} (ADDVconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  5. src/runtime/asm_wasm.s

    	MOVD gobuf_ret(R0), RET0
    	MOVD gobuf_ctxt(R0), CTXT
    	// clear to help garbage collector
    	MOVD $0, gobuf_sp(R0)
    	MOVD $0, gobuf_ret(R0)
    	MOVD $0, gobuf_ctxt(R0)
    
    	I32Const $1
    	Return
    
    // func mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    // to keep running g.
    TEXT runtime·mcall(SB), NOSPLIT, $0-8
    	// CTXT = fn
    	MOVD fn+0(FP), CTXT
    	// R1 = g.m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/read.go

    			suffix := ""
    			if ctxt.InstallSuffix != "" {
    				suffix = "_" + ctxt.InstallSuffix
    			}
    			switch ctxt.Compiler {
    			case "gccgo":
    				pkgtargetroot = "pkg/gccgo_" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    				dir, elem := path.Split(p.ImportPath)
    				pkga = pkgtargetroot + "/" + dir + "lib" + elem + ".a"
    			case "gc":
    				pkgtargetroot = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/complit.go

    			// Discard.
    			continue
    		}
    
    		switch value.Op() {
    		case ir.OSLICELIT:
    			value := value.(*ir.CompLitExpr)
    			if (kind == initKindStatic && ctxt == inNonInitFunction) || (kind == initKindDynamic && ctxt == inInitFunction) {
    				var sinit ir.Nodes
    				slicelit(ctxt, value, a, &sinit)
    				if kind == initKindStatic {
    					// When doing static initialization, init statements may contain dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named.go

    	// resolve n for any recursive references.
    	h := n.inst.ctxt.instanceHash(orig, targs.list())
    	n2 := n.inst.ctxt.update(h, orig, n.TypeArgs().list(), n)
    	assert(n == n2)
    
    	smap := makeSubstMap(orig.tparams.list(), targs.list())
    	var ctxt *Context
    	if check != nil {
    		ctxt = check.context()
    	}
    	underlying := n.check.subst(n.obj.pos, orig.underlying, smap, n, ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/go/types/named.go

    	// resolve n for any recursive references.
    	h := n.inst.ctxt.instanceHash(orig, targs.list())
    	n2 := n.inst.ctxt.update(h, orig, n.TypeArgs().list(), n)
    	assert(n == n2)
    
    	smap := makeSubstMap(orig.tparams.list(), targs.list())
    	var ctxt *Context
    	if check != nil {
    		ctxt = check.context()
    	}
    	underlying := n.check.subst(n.obj.pos, orig.underlying, smap, n, ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/cmd/link/internal/amd64/asm.go

    		// assume got->size == 0 too
    		got.AddAddrPlus(ctxt.Arch, dynamic, 0)
    
    		got.AddUint64(ctxt.Arch, 0)
    		got.AddUint64(ctxt.Arch, 0)
    	}
    }
    
    func addpltsym(target *ld.Target, ldr *loader.Loader, syms *ld.ArchSyms, s loader.Sym) {
    	if ldr.SymPlt(s) >= 0 {
    		return
    	}
    
    	ld.Adddynsym(ldr, target, syms, s)
    
    	if target.IsElf() {
    		plt := ldr.MakeSymbolUpdater(syms.PLT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top