Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for auxInt8 (0.13 sec)

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

    				}
    				if !isInImmediateRange(v.AuxInt + p.AuxInt) {
    					continue
    				}
    				if p.Aux != nil {
    					v.Aux = p.Aux
    				}
    				v.AuxInt += p.AuxInt
    			case [2]auxType{auxSymValAndOff, auxInt32}:
    				vo := ValAndOff(v.AuxInt)
    				if !vo.canAdd64(p.AuxInt) {
    					continue
    				}
    				v.AuxInt = int64(vo.addOffset64(p.AuxInt))
    			case [2]auxType{auxSymValAndOff, auxSymOff}:
    				vo := ValAndOff(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:57 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// auxint+aux == add auxint and the offset of the symbol in aux (if any) to the effective address
    
    		{name: "MOVDconst", reg: gp01, asm: "MOV", typ: "UInt64", aux: "Int64", rematerializeable: true}, // auxint
    
    		// Loads: load <size> bits from arg0+auxint+aux and extend to 64 bits; arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/softfloat.go

    					v.Type = f.Config.Types.UInt32
    					v.AuxInt = int64(int32(math.Float32bits(auxTo32F(v.AuxInt))))
    				case OpConst64F:
    					v.Op = OpConst64
    					v.Type = f.Config.Types.UInt64
    				case OpNeg32F:
    					arg0 := v.Args[0]
    					v.reset(OpXor32)
    					v.Type = f.Config.Types.UInt32
    					v.AddArg(arg0)
    					mask := v.Block.NewValue0(v.Pos, OpConst32, v.Type)
    					mask.AuxInt = -0x80000000
    					v.AddArg(mask)
    				case OpNeg64F:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 16:14:24 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    	// match: (ADDSconstflags [c] x)
    	// cond: !isARM64addcon(c)
    	// result: (ADDSflags x (MOVDconst [c]))
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		x := v_0
    		if !(!isARM64addcon(c)) {
    			break
    		}
    		v.reset(OpARM64ADDSflags)
    		v0 := b.NewValue0(v.Pos, OpARM64MOVDconst, typ.UInt64)
    		v0.AuxInt = int64ToAuxInt(c)
    		v.AddArg2(x, v0)
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func_test.go

    	f.f.freeValue(v1)
    	f.f.freeValue(v2)
    	v3 := f.f.ConstBool(c.config.Types.Bool, false)
    	v4 := f.f.ConstBool(c.config.Types.Bool, true)
    	if v3.AuxInt != 0 {
    		t.Errorf("expected %s to have auxint of 0\n", v3.LongString())
    	}
    	if v4.AuxInt != 1 {
    		t.Errorf("expected %s to have auxint of 1\n", v4.LongString())
    	}
    
    }
    
    // opcodeMap returns a map from opcode to the number of times that opcode
    // appears in the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/cse.go

    func cmpVal(v, w *Value, auxIDs auxmap) types.Cmp {
    	// Try to order these comparison by cost (cheaper first)
    	if v.Op != w.Op {
    		return lt2Cmp(v.Op < w.Op)
    	}
    	if v.AuxInt != w.AuxInt {
    		return lt2Cmp(v.AuxInt < w.AuxInt)
    	}
    	if len(v.Args) != len(w.Args) {
    		return lt2Cmp(len(v.Args) < len(w.Args))
    	}
    	if v.Op == OpPhi && v.Block != w.Block {
    		return lt2Cmp(v.Block.ID < w.Block.ID)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// constants. Constant values are stored in the aux or
    	// auxint fields.
    	{name: "ConstBool", aux: "Bool"},     // auxint is 0 for false and 1 for true
    	{name: "ConstString", aux: "String"}, // value is aux.(string)
    	{name: "ConstNil", typ: "BytePtr"},   // nil pointer
    	{name: "Const8", aux: "Int8"},        // auxint is sign-extended 8 bits
    	{name: "Const16", aux: "Int16"},      // auxint is sign-extended 16 bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    		old, ok := ft.limits[v.ID]
    		if !ok {
    			old = noLimit
    			if v.isGenericIntConst() {
    				switch d {
    				case signed:
    					old.min, old.max = v.AuxInt, v.AuxInt
    					if v.AuxInt >= 0 {
    						old.umin, old.umax = uint64(v.AuxInt), uint64(v.AuxInt)
    					}
    				case unsigned:
    					old.umin = v.AuxUnsigned()
    					old.umax = old.umin
    					if int64(old.umin) >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/x86/ssa.go

    		a := v.Args[0].Reg()
    		if r == a {
    			if v.AuxInt == 1 {
    				p := s.Prog(x86.AINCL)
    				p.To.Type = obj.TYPE_REG
    				p.To.Reg = r
    				return
    			}
    			if v.AuxInt == -1 {
    				p := s.Prog(x86.ADECL)
    				p.To.Type = obj.TYPE_REG
    				p.To.Reg = r
    				return
    			}
    			p := s.Prog(v.Op.Asm())
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = v.AuxInt
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	return int32(sh<<16 | mb<<8 | me)
    }
    
    func GetPPC64Shiftsh(auxint int64) int64 {
    	return int64(int8(auxint >> 16))
    }
    
    func GetPPC64Shiftmb(auxint int64) int64 {
    	return int64(int8(auxint >> 8))
    }
    
    func GetPPC64Shiftme(auxint int64) int64 {
    	return int64(int8(auxint))
    }
    
    // Test if this value can encoded as a mask for a rlwinm like
    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