Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	// since the type we get from the ABI analyzer won't always match
    	// what the compiler uses when creating OpArg{Int,Float}Reg ops.
    	for _, v := range f.Entry.Values {
    		if v.Op == OpArgIntReg || v.Op == OpArgFloatReg {
    			aux := v.Aux.(*AuxNameOffset)
    			sl := LocalSlot{N: aux.Name, Type: v.Type, Off: aux.Offset}
    			// install slot in lookup table
    			idx, _ := sc.lookup(sl)
    			// add to f.NamedValues if not already present
    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/ssa/regalloc.go

    	}
    	if op == OpArgIntReg {
    		reg := v.Block.Func.Config.intParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op == OpArgFloatReg {
    		reg := v.Block.Func.Config.floatParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op.IsCall() {
    		if ac, ok := v.Aux.(*AuxCall); ok && ac.reg != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    	case ssa.OpStoreReg:
    		storeOp := storeByType(v.Type)
    		p := s.Prog(storeOp)
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = v.Args[0].Reg()
    		ssagen.AddrAuto(&p.To, v)
    
    	case ssa.OpArgIntReg, ssa.OpArgFloatReg:
    		// The assembler needs to wrap the entry safepoint/stack growth code with spill/unspill
    		// The loop only runs once.
    		for _, a := range v.Block.Func.RegArgs {
    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