Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for typeToAux (0.2 sec)

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

    		real := v_1.Args[0]
    		mem := v_2
    		if !(t.Size() == 8) {
    			break
    		}
    		v.reset(OpStore)
    		v.Aux = typeToAux(typ.Float32)
    		v0 := b.NewValue0(v.Pos, OpOffPtr, typ.Float32Ptr)
    		v0.AuxInt = int64ToAuxInt(4)
    		v0.AddArg(dst)
    		v1 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v1.Aux = typeToAux(typ.Float32)
    		v1.AddArg3(dst, real, mem)
    		v.AddArg3(v0, imag, v1)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    			break
    		}
    		v.reset(OpStore)
    		v.Aux = typeToAux(t1)
    		v0 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v0.Aux = typeToAux(t2)
    		v1 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v1.Aux = typeToAux(t3)
    		v2 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v2.Aux = typeToAux(t4)
    		v2.AddArg3(op4, d4, mem)
    		v1.AddArg3(op3, d3, v2)
    		v0.AddArg3(op2, d2, v1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritedec64.go

    		mem := v_2
    		if !(t.Size() == 8 && !config.BigEndian) {
    			break
    		}
    		v.reset(OpStore)
    		v.Aux = typeToAux(hi.Type)
    		v0 := b.NewValue0(v.Pos, OpOffPtr, hi.Type.PtrTo())
    		v0.AuxInt = int64ToAuxInt(4)
    		v0.AddArg(dst)
    		v1 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v1.Aux = typeToAux(lo.Type)
    		v1.AddArg3(dst, lo, mem)
    		v.AddArg3(v0, hi, v1)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	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
    }
    func typeToAux(t *types.Type) Aux {
    	return t
    }
    func s390xCCMaskToAux(c s390x.CCMask) Aux {
    	return c
    }
    func s390xRotateParamsToAux(r s390x.RotateParams) Aux {
    	return r
    }
    
    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