Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for auxIntToInt16 (0.38 sec)

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

    		v3.AddArg(v4)
    		v.AddArg2(v0, v3)
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConst16(v *Value) bool {
    	// match: (Const16 [val])
    	// result: (MOVDconst [int64(val)])
    	for {
    		val := auxIntToInt16(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConst32(v *Value) bool {
    	// match: (Const32 [val])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
Back to top