Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for newValue0A (0.76 sec)

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

    	b.ID = id
    	b.succstorage[0].b = f.freeBlocks
    	f.freeBlocks = b
    }
    
    // NewValue0 returns a new value in the block with no arguments and zero aux values.
    func (b *Block) NewValue0(pos src.XPos, op Op, t *types.Type) *Value {
    	v := b.Func.newValue(op, t, b, pos)
    	v.AuxInt = 0
    	v.Args = v.argstorage[:0]
    	return v
    }
    
    // NewValue0I returns a new value in the block with no arguments and an auxint value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	return s.line[len(s.line)-1]
    }
    
    // newValue0 adds a new value with no arguments to the current block.
    func (s *state) newValue0(op ssa.Op, t *types.Type) *ssa.Value {
    	return s.curBlock.NewValue0(s.peekPos(), op, t)
    }
    
    // newValue0A adds a new value with no arguments and an aux value to the current block.
    func (s *state) newValue0A(op ssa.Op, t *types.Type, aux ssa.Aux) *ssa.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/writebarrier.go

    	}
    
    	args = append(args, mem)
    
    	// issue call
    	argTypes := make([]*types.Type, nargs, 3) // at most 3 args; allows stack allocation
    	for i := 0; i < nargs; i++ {
    		argTypes[i] = typ
    	}
    	call := b.NewValue0A(pos, OpStaticCall, types.TypeResultMem, StaticAuxCall(fn, b.Func.ABIDefault.ABIAnalyzeTypes(argTypes, nil)))
    	call.AddArgs(args...)
    	call.AuxInt = int64(nargs) * typ.Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritedec.go

    			break
    		}
    		v.reset(OpSliceMake)
    		v0 := b.NewValue0(v.Pos, OpLoad, t.Elem().PtrTo())
    		v0.AddArg2(ptr, mem)
    		v1 := b.NewValue0(v.Pos, OpLoad, typ.Int)
    		v2 := b.NewValue0(v.Pos, OpOffPtr, typ.IntPtr)
    		v2.AuxInt = int64ToAuxInt(config.PtrSize)
    		v2.AddArg(ptr)
    		v1.AddArg2(v2, mem)
    		v3 := b.NewValue0(v.Pos, OpLoad, typ.Int)
    		v4 := b.NewValue0(v.Pos, OpOffPtr, typ.IntPtr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		v.reset(OpMIPS64LoweredAtomicAnd32)
    		v0 := b.NewValue0(v.Pos, OpMIPS64AND, typ.UInt32Ptr)
    		v1 := b.NewValue0(v.Pos, OpMIPS64MOVVconst, typ.UInt64)
    		v1.AuxInt = int64ToAuxInt(^3)
    		v0.AddArg2(v1, ptr)
    		v2 := b.NewValue0(v.Pos, OpMIPS64OR, typ.UInt64)
    		v3 := b.NewValue0(v.Pos, OpMIPS64SLLV, typ.UInt32)
    		v4 := b.NewValue0(v.Pos, OpZeroExt8to32, typ.UInt32)
    		v4.AddArg(val)
    		v5 := b.NewValue0(v.Pos, OpMIPS64SLLVconst, typ.UInt64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		mem := v_2
    		v.reset(OpRISCV64LoweredAtomicAnd32)
    		v0 := b.NewValue0(v.Pos, OpRISCV64ANDI, typ.Uintptr)
    		v0.AuxInt = int64ToAuxInt(^3)
    		v0.AddArg(ptr)
    		v1 := b.NewValue0(v.Pos, OpRISCV64NOT, typ.UInt32)
    		v2 := b.NewValue0(v.Pos, OpRISCV64SLL, typ.UInt32)
    		v3 := b.NewValue0(v.Pos, OpRISCV64XORI, typ.UInt32)
    		v3.AuxInt = int64ToAuxInt(0xff)
    		v4 := b.NewValue0(v.Pos, OpZeroExt8to32, typ.UInt32)
    		v4.AddArg(val)
    		v3.AddArg(v4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		x := v_0
    		y := v_1
    		v.reset(OpLOONG64MASKEQZ)
    		v0 := b.NewValue0(v.Pos, OpLOONG64SRLV, t)
    		v1 := b.NewValue0(v.Pos, OpZeroExt16to64, typ.UInt64)
    		v1.AddArg(x)
    		v2 := b.NewValue0(v.Pos, OpZeroExt16to64, typ.UInt64)
    		v2.AddArg(y)
    		v0.AddArg2(v1, v2)
    		v3 := b.NewValue0(v.Pos, OpLOONG64SGTU, typ.Bool)
    		v4 := b.NewValue0(v.Pos, OpLOONG64MOVVconst, typ.UInt64)
    		v4.AuxInt = int64ToAuxInt(64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritegeneric.go

    		}
    		v.reset(OpTrunc32to16)
    		v0 := b.NewValue0(v.Pos, OpRsh32Ux64, typ.UInt32)
    		v1 := b.NewValue0(v.Pos, OpMul32, typ.UInt32)
    		v2 := b.NewValue0(v.Pos, OpConst32, typ.UInt32)
    		v2.AuxInt = int32ToAuxInt(int32(1<<15 + (umagic16(c).m+1)/2))
    		v3 := b.NewValue0(v.Pos, OpRsh32Ux64, typ.UInt32)
    		v4 := b.NewValue0(v.Pos, OpZeroExt16to32, typ.UInt32)
    		v4.AddArg(x)
    		v5 := b.NewValue0(v.Pos, OpConst64, typ.UInt64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM.go

    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARMSUB)
    		v0 := b.NewValue0(v.Pos, OpARMXOR, typ.UInt32)
    		v1 := b.NewValue0(v.Pos, OpSelect0, typ.UInt32)
    		v2 := b.NewValue0(v.Pos, OpARMCALLudiv, types.NewTuple(typ.UInt32, typ.UInt32))
    		v3 := b.NewValue0(v.Pos, OpARMSUB, typ.UInt32)
    		v4 := b.NewValue0(v.Pos, OpARMXOR, typ.UInt32)
    		v5 := b.NewValue0(v.Pos, OpSignmask, typ.Int32)
    		v5.AddArg(x)
    		v4.AddArg2(x, v5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AuxInt = int32ToAuxInt(2)
    		v0 := b.NewValue0(v.Pos, OpPPC64SLD, t)
    		v1 := b.NewValue0(v.Pos, OpPPC64MOVHZreg, typ.Int64)
    		v1.AddArg(x)
    		v0.AddArg2(v1, y)
    		v2 := b.NewValue0(v.Pos, OpPPC64MOVDconst, typ.Int64)
    		v2.AuxInt = int64ToAuxInt(0)
    		v3 := b.NewValue0(v.Pos, OpPPC64CMPconst, types.TypeFlags)
    		v3.AuxInt = int64ToAuxInt(0)
    		v4 := b.NewValue0(v.Pos, OpPPC64ANDconst, typ.Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top