Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AuxInt (0.18 sec)

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

    	for {
    		val := auxIntToInt64(v.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValuePPC64_OpConst8(v *Value) bool {
    	// match: (Const8 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	return s.curBlock.NewValue0A(s.peekPos(), op, t, aux)
    }
    
    // newValue0I adds a new value with no arguments and an auxint value to the current block.
    func (s *state) newValue0I(op ssa.Op, t *types.Type, auxint int64) *ssa.Value {
    	return s.curBlock.NewValue0I(s.peekPos(), op, t, auxint)
    }
    
    // newValue1 adds a new value with one argument to the current block.
    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