Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for symMode (0.22 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	symNodes := make(map[*objSymbol]graph.Nodes)
    	for _, s := range symbols {
    		// Gather samples for this symbol.
    		for _, n := range ns {
    			if address, err := s.file.ObjAddr(n.Info.Address); err == nil && address >= s.sym.Start && address < s.sym.End {
    				symNodes[s] = append(symNodes[s], n)
    			}
    		}
    	}
    	return symNodes
    }
    
    type assemblyInstruction struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/deadstore.go

    			args = args[1:]
    		}
    
    		// The code below assumes that we have handled all the ops
    		// with sym effects already. Sanity check that here.
    		// Ignore Args since they can't be autos.
    		if v.Op.SymEffect() != SymNone && v.Op != OpArg {
    			panic("unhandled op with sym effect")
    		}
    
    		if v.Uses == 0 && v.Op != OpNilCheck && !v.Op.IsCall() && !v.Op.HasSideEffects() || len(args) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    // 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:
    //   - a *gc.Node, for an offset from SP (the stack pointer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    	{
    		name:      "FwdRef",
    		auxType:   auxSym,
    		argLen:    0,
    		symEffect: SymNone,
    		generic:   true,
    	},
    	{
    		name:    "Unknown",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:      "VarDef",
    		auxType:   auxSym,
    		argLen:    1,
    		zeroWidth: true,
    		symEffect: SymNone,
    		generic:   true,
    	},
    	{
    		name:      "VarLive",
    		auxType:   auxSym,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top