Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ofsr (0.32 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    	PtrSize() int
    	Size(s Sym) int64
    	AddInt(s Sym, size int, i int64)
    	AddBytes(s Sym, b []byte)
    	AddAddress(s Sym, t interface{}, ofs int64)
    	AddCURelativeAddress(s Sym, t interface{}, ofs int64)
    	AddSectionOffset(s Sym, size int, t interface{}, ofs int64)
    	AddDWARFAddrSectionOffset(s Sym, t interface{}, ofs int64)
    	CurrentOffset(s Sym) int64
    	RecordDclReference(from Sym, to Sym, dclIdx int, inlIndex int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    			n = ir.NewBlockStmt(n.Pos(), nil)
    		}
    		return n
    
    	case ir.ODEFER, ir.OGO:
    		n := n.(*ir.GoDeferStmt)
    		n.Call = typecheck(n.Call, ctxStmt|ctxExpr)
    		tcGoDefer(n)
    		return n
    
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		return tcFor(n)
    
    	case ir.OIF:
    		n := n.(*ir.IfStmt)
    		return tcIf(n)
    
    	case ir.ORETURN:
    		n := n.(*ir.ReturnStmt)
    		return tcReturn(n)
    
    	case ir.OTAILCALL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    	// Clean temporaries from condition evaluation at
    	// beginning of loop body and after for statement.
    	case ir.OFOR:
    		n := n.(*ir.ForStmt)
    		t := o.markTemp()
    		n.Cond = o.exprInPlace(n.Cond)
    		orderBlock(&n.Body, o.free)
    		n.Post = orderStmtInPlace(n.Post, o.free)
    		o.out = append(o.out, n)
    		o.popTemp(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top