Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for flagConstant (0.1 sec)

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

    	auxFloat32                // auxInt is a float32 (encoded with math.Float64bits)
    	auxFloat64                // auxInt is a float64 (encoded with math.Float64bits)
    	auxFlagConstant           // auxInt is a flagConstant
    	auxCCop                   // auxInt is a ssa.Op that represents a flags-to-bool conversion (e.g. LessThan)
    	auxNameOffsetInt8         // aux is a &struct{Name ir.Name, Offset int64}; auxInt is index in parameter registers array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. 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)
Back to top