Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UBFIZ (0.03 sec)

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

    	// match: (SLLconst [sc] (UBFIZ [bfc] x))
    	// cond: sc+bfc.getARM64BFwidth()+bfc.getARM64BFlsb() < 64
    	// result: (UBFIZ [armBFAuxInt(bfc.getARM64BFlsb()+sc, bfc.getARM64BFwidth())] x)
    	for {
    		sc := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpARM64UBFIZ {
    			break
    		}
    		bfc := auxIntToArm64BitField(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(sc+bfc.getARM64BFwidth()+bfc.getARM64BFlsb() < 64) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
Back to top