Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for InlMark (0.17 sec)

  1. src/cmd/internal/obj/pcln.go

    	}
    
    	pcinlineState := new(pcinlineState)
    	pcln.Pcinline = funcpctab(ctxt, cursym, "pctoinline", pcinlineState.pctoinline, nil)
    	for _, inlMark := range fn.InlMarks {
    		pcinlineState.setParentPC(ctxt, int(inlMark.id), int32(inlMark.p.Pc))
    	}
    	pcln.InlTree = pcinlineState.localTree
    	if ctxt.Debugpcln == "pctoinline" && len(pcln.InlTree.nodes) > 0 {
    		ctxt.Logf("-- inlining tree for %s:\n", cursym)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	Args      int32
    	Locals    int32
    	Align     int32
    	FuncID    abi.FuncID
    	FuncFlag  abi.FuncFlag
    	StartLine int32
    	Text      *Prog
    	Autot     map[*LSym]struct{}
    	Pcln      Pcln
    	InlMarks  []InlMark
    	spills    []RegSpill
    
    	dwarfInfoSym       *LSym
    	dwarfLocSym        *LSym
    	dwarfRangesSym     *LSym
    	dwarfAbsFnSym      *LSym
    	dwarfDebugLinesSym *LSym
    
    	GCArgs             *LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/fmt.go

    	OFALL:             "fallthrough",
    	OFOR:              "for",
    	OGE:               ">=",
    	OGOTO:             "goto",
    	OGT:               ">",
    	OIF:               "if",
    	OIMAG:             "imag",
    	OINLMARK:          "inlmark",
    	ODEREF:            "*",
    	OLEN:              "len",
    	OLE:               "<=",
    	OLSH:              "<<",
    	OLT:               "<",
    	OMAKE:             "make",
    	ONEG:              "-",
    	OMAX:              "max",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// InlMark marks the start of an inlined function body. Its AuxInt field
    	// distinguishes which entry in the local inline tree it is marking.
    	{name: "InlMark", argLength: 1, aux: "Int32", typ: "Void"}, // arg[0]=mem, returns void.
    
    	// Ops for breaking 64-bit operations on 32-bit architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    	// 	.   AS2-Lhs
    	// 	.   .   NAME-p.x Class:PAUTO Offset:0 InlFormal OnStack Used int tc(1) # x.go:14:9,x.go:18:13
    	// 	.   AS2-Rhs
    	// 	.   .   LITERAL-400 int tc(1) # x.go:18:14
    	// 	.   INLMARK Index:1 # +x.go:18:13
    	// 	INLCALL PTR-*T tc(1) # x.go:18:13
    	// 	INLCALL-Body
    	// 	.   BLOCK tc(1) # x.go:18:13
    	// 	.   BLOCK-List
    	// 	.   .   DCL tc(1) # x.go:18:13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    		zeroWidth: true,
    		symEffect: SymRead,
    		generic:   true,
    	},
    	{
    		name:      "KeepAlive",
    		argLen:    2,
    		zeroWidth: true,
    		generic:   true,
    	},
    	{
    		name:    "InlMark",
    		auxType: auxInt32,
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Int64Make",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "Int64Hi",
    		argLen:  1,
    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