Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    		}
    		p := opregreg(s, v.Op.Asm(), r, r2)
    		if r != r1 {
    			p.Reg = r1
    		}
    	case ssa.OpS390XRXSBG:
    		r2 := v.Args[1].Reg()
    		i := v.Aux.(s390x.RotateParams)
    		p := s.Prog(v.Op.Asm())
    		p.From = obj.Addr{Type: obj.TYPE_CONST, Offset: int64(i.Start)}
    		p.AddRestSourceArgs([]obj.Addr{
    			{Type: obj.TYPE_CONST, Offset: int64(i.End)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
Back to top