Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RotateParams (0.44 sec)

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

    				if _, ok := v.Aux.(s390x.CCMask); !ok {
    					f.Fatalf("bad type %T for S390XCCMask in %v", v.Aux, v)
    				}
    				canHaveAux = true
    			case auxS390XRotateParams:
    				if _, ok := v.Aux.(s390x.RotateParams); !ok {
    					f.Fatalf("bad type %T for S390XRotateParams in %v", v.Aux, v)
    				}
    				canHaveAux = true
    			case auxFlagConstant:
    				if v.AuxInt < 0 || v.AuxInt > 15 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		return "Sym"
    	case "Typ":
    		return "*types.Type"
    	case "TypSize":
    		return "*types.Type"
    	case "S390XCCMask":
    		return "s390x.CCMask"
    	case "S390XRotateParams":
    		return "s390x.RotateParams"
    	default:
    		return "invalid"
    	}
    }
    
    // auxIntType returns the Go type that this operation should store in its auxInt field.
    func (op opData) auxIntType() string {
    	switch op.aux {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    }
    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
    }
    func callToAux(s *AuxCall) 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