Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for convTstring (0.38 sec)

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

    		return true
    	}
    	return false
    }
    func rewriteValuegeneric_OpConstString(v *Value) bool {
    	b := v.Block
    	config := b.Func.Config
    	fe := b.Func.fe
    	typ := &b.Func.Config.Types
    	// match: (ConstString {str})
    	// cond: config.PtrSize == 4 && str == ""
    	// result: (StringMake (ConstNil) (Const32 <typ.Int> [0]))
    	for {
    		str := auxToString(v.Aux)
    		if !(config.PtrSize == 4 && str == "") {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    		resultInArg0: true,
    		zeroWidth:    true,
    		generic:      true,
    	},
    	{
    		name:    "ConstBool",
    		auxType: auxBool,
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "ConstString",
    		auxType: auxString,
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "ConstNil",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "Const8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top