Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setFoo (0.28 sec)

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

    		if !(p.Op != OpSB && x.Uses == 1 && is20Bit(int64(i)-8) && setPos(v, x.Pos) && clobber(x)) {
    			break
    		}
    		v.reset(OpS390XSTMG2)
    		v.AuxInt = int32ToAuxInt(i - 8)
    		v.Aux = symToAux(s)
    		v.AddArg4(p, w0, w1, mem)
    		return true
    	}
    	// match: (MOVDstore [i] {s} p w2 x:(STMG2 [i-16] {s} p w0 w1 mem))
    	// cond: x.Uses == 1 && is20Bit(int64(i)-16) && setPos(v, x.Pos) && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		p.Pos = p.Pos.WithNotStmt()
    	}
    	return p
    }
    
    // Pc returns the current Prog.
    func (s *State) Pc() *obj.Prog {
    	return s.pp.Next
    }
    
    // SetPos sets the current source position.
    func (s *State) SetPos(pos src.XPos) {
    	s.pp.Pos = pos
    }
    
    // Br emits a single branch instruction and returns the instruction.
    // Not all architectures need the returned instruction, but otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top