Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vregs (0.07 sec)

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

    			for _, slot := range locs.registers[vReg.num] {
    				if !newSlots[slot] {
    					state.logf("at %v: overwrote %v in register %v\n", v, state.slots[slot], vReg)
    				}
    			}
    		}
    
    		for _, slot := range locs.registers[vReg.num] {
    			last := locs.slots[slot]
    			setSlot(slot, VarLoc{last.Registers &^ (1 << uint8(vReg.num)), last.StackOffset})
    		}
    		locs.registers[vReg.num] = locs.registers[vReg.num][:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    	case ssa.OpPPC64MOVDaddr:
    		switch v.Aux.(type) {
    		default:
    			v.Fatalf("aux in MOVDaddr is of unknown type %T", v.Aux)
    		case nil:
    			// If aux offset and aux int are both 0, and the same
    			// input and output regs are used, no instruction
    			// needs to be generated, since it would just be
    			// addi rx, rx, 0.
    			if v.AuxInt != 0 || v.Args[0].Reg() != v.Reg() {
    				p := s.Prog(ppc64.AMOVD)
    				p.From.Type = obj.TYPE_ADDR
    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