Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for flagConstant (0.25 sec)

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

    	case auxCCop:
    		return fmt.Sprintf(" [%s]", Op(v.AuxInt))
    	case auxS390XCCMask, auxS390XRotateParams:
    		return fmt.Sprintf(" {%v}", v.Aux)
    	case auxFlagConstant:
    		return fmt.Sprintf("[%s]", flagConstant(v.AuxInt))
    	case auxNone:
    		return ""
    	default:
    		// If you see this, add a case above instead.
    		return fmt.Sprintf("[auxtype=%d AuxInt=%d Aux=%v]", opcodeTable[v.Op].auxType, v.AuxInt, v.Aux)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// comparisons, but we don't use such a beast yet.
    		// This op is for temporary use by rewrite rules. It
    		// cannot appear in the generated assembly.
    		{name: "FlagConstant", aux: "FlagConstant"},
    
    		// (InvertFlags (CMP a b)) == (CMP b a)
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    		argLen:  4,
    		call:    true,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 16}, // R4
    				{1, 1},  // R0
    				{2, 2},  // R1
    			},
    		},
    	},
    	{
    		name:    "FlagConstant",
    		auxType: auxFlagConstant,
    		argLen:  0,
    		reg:     regInfo{},
    	},
    	{
    		name:   "InvertFlags",
    		argLen: 1,
    		reg:    regInfo{},
    	},
    	{
    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