Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withNotStmt (0.14 sec)

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

    		c := v.copyIntoWithXPos(s.curBlock, pos)
    		c.OnWasmStack = true
    		s.setOrig(c, v)
    		return c
    	}
    	if v.OnWasmStack {
    		return v
    	}
    
    	vi := &s.values[v.ID]
    	pos = pos.WithNotStmt()
    	// Check if v is already in a requested register.
    	if mask&vi.regs != 0 {
    		r := pickReg(mask & vi.regs)
    		if s.regs[r].v != v || s.regs[r].c == nil {
    			panic("bad register state")
    		}
    		if nospill {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    							// line to appear in more than one block, but only one block is stored, so if both end
    							// up here, then one will be lost.
    							pendingLines.set(a.Pos, int32(a.Block.ID))
    						}
    						a.Pos = a.Pos.WithNotStmt()
    					}
    					vchange = true
    					for a.Uses == 0 {
    						b := a.Args[0]
    						a.reset(OpInvalid)
    						a = b
    					}
    				}
    				if vchange && debug > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    	p = pp.Append(p, storeByType(t), obj.TYPE_REG, reg, 0, obj.TYPE_MEM, 0, n.FrameOffset()+off)
    	p.To.Name = obj.NAME_PARAM
    	p.To.Sym = n.Linksym()
    	p.Pos = p.Pos.WithNotStmt()
    	return p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top