Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for auxToS390xRotateParams (0.19 sec)

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

    	// cond: z.InMerge(y.OutMask()) != nil
    	// result: (RISBGZ x {(*z.InMerge(y.OutMask())).RotateLeft(y.Amount)})
    	for {
    		z := auxToS390xRotateParams(v.Aux)
    		if v_0.Op != OpS390XRISBGZ {
    			break
    		}
    		y := auxToS390xRotateParams(v_0.Aux)
    		x := v_0.Args[0]
    		if !(z.InMerge(y.OutMask()) != nil) {
    			break
    		}
    		v.reset(OpS390XRISBGZ)
    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/ssa/rewrite.go

    func auxToType(i Aux) *types.Type {
    	return i.(*types.Type)
    }
    func auxToCall(i Aux) *AuxCall {
    	return i.(*AuxCall)
    }
    func auxToS390xCCMask(i Aux) s390x.CCMask {
    	return i.(s390x.CCMask)
    }
    func auxToS390xRotateParams(i Aux) s390x.RotateParams {
    	return i.(s390x.RotateParams)
    }
    
    func StringToAux(s string) Aux {
    	return stringAux(s)
    }
    func symToAux(s Sym) Aux {
    	return s
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top