Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for symaddr (0.52 sec)

  1. src/cmd/compile/internal/ssa/op.go

    // A SymEffect describes the effect that an SSA Value has on the variable
    // identified by the symbol in its Aux field.
    type SymEffect int8
    
    const (
    	SymRead SymEffect = 1 << iota
    	SymWrite
    	SymAddr
    
    	SymRdWr = SymRead | SymWrite
    
    	SymNone SymEffect = 0
    )
    
    // A Sym represents a symbolic offset from a base register.
    // Currently a Sym can be one of 3 things:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    				symtab.AddUint8(0)
    			} else {
    				symtab.AddUint8(uint8(ldr.SymSect(o).Extnum))
    			}
    			symtab.AddUint16(ctxt.Arch, 0) // desc
    			symtab.AddUintXX(ctxt.Arch, uint64(ldr.SymAddr(s)), ctxt.Arch.PtrSize)
    		}
    	}
    }
    
    func machodysymtab(ctxt *Link, base int64) {
    	ml := newMachoLoad(ctxt.Arch, LC_DYSYMTAB, 18)
    
    	n := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    	// This also prevents a variable from "coming back from the dead" and presenting
    	// stale pointers to the garbage collector. See issue 28445.
    	if e&(ssa.SymRead|ssa.SymAddr) != 0 {
    		effect |= uevar
    	}
    	if e&ssa.SymWrite != 0 {
    		if !isfat(n.Type()) || v.Op == ssa.OpVarDef {
    			effect |= varkill
    		} else if lv.conservativeWrites {
    			effect |= uevar
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/helpers_test.go

    var destPortDispatchRegexp = regexp.MustCompile(`^meta l4proto \. th dport vmap @(\S+)$`)
    
    var sourceAddrRegexp = regexp.MustCompile(`^ip6* saddr (!= )?(\S+)`)
    var sourceAddrLookupRegexp = regexp.MustCompile(`^ip6* saddr (!= )?\{([^}]*)\}`)
    var sourceAddrLocalRegexp = regexp.MustCompile(`^fib saddr type local`)
    
    var endpointVMAPRegexp = regexp.MustCompile(`^numgen random mod \d+ vmap \{(.*)\}$`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute.go

    		for _, domain := range domains {
    			domains = append(domains, wildcardDomainPrefix+domain)
    		}
    	}
    
    	svcAddr := service.GetAddressForProxy(node)
    	if len(svcAddr) > 0 && svcAddr != constants.UnspecifiedIP {
    		domains = appendDomainPort(domains, svcAddr, port)
    	}
    
    	// handle dual stack's extra address when generating the virtualHost domains
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    		}
    	}
    
    	state.pcheader = state.addGeneratedSym(ctxt, "runtime.pcheader", size, writeHeader)
    	// Create the runtimeText relocation.
    	sb := ldr.MakeSymbolUpdater(state.pcheader)
    	sb.SetAddr(ctxt.Arch, textStartOff, ldr.Lookup("runtime.text", 0))
    }
    
    // walkFuncs iterates over the funcs, calling a function for each unique
    // function and inlined function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. cmd/notification.go

    	addr := peerClient.host.String()
    	reqInfo := (&logger.ReqInfo{}).AppendTags("remotePeer", addr)
    	ctx := logger.SetReqInfo(GlobalContext, reqInfo)
    	peersLogOnceIf(ctx, err, "add-node-err-"+addr)
    	nodeInfo.SetAddr(addr)
    	nodeInfo.SetError(err.Error())
    }
    
    // GetSysErrors - Memory information
    func (sys *NotificationSys) GetSysErrors(ctx context.Context) []madmin.SysErrors {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. src/runtime/signal_unix.go

    //
    //go:nosplit
    //go:linkname setsigsegv
    func setsigsegv(pc uintptr) {
    	gp := getg()
    	gp.sig = _SIGSEGV
    	gp.sigpc = pc
    	gp.sigcode0 = _SEGV_MAPERR
    	gp.sigcode1 = 0 // TODO: emulate si_addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top