Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for auxIntToFlagConstant (0.49 sec)

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

    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(fc.eq()) {
    				break
    			}
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (EQ (FlagConstant [fc]) yes no)
    		// cond: !fc.eq()
    		// result: (First no yes)
    		for b.Controls[0].Op == OpARMFlagConstant {
    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(!fc.eq()) {
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(fc.eq()) {
    				break
    			}
    			b.Reset(BlockFirst)
    			return true
    		}
    		// match: (EQ (FlagConstant [fc]) yes no)
    		// cond: !fc.eq()
    		// result: (First no yes)
    		for b.Controls[0].Op == OpARM64FlagConstant {
    			v_0 := b.Controls[0]
    			fc := auxIntToFlagConstant(v_0.AuxInt)
    			if !(!fc.eq()) {
    				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)
  3. src/cmd/compile/internal/ssa/rewrite.go

    }
    func auxIntToArm64BitField(i int64) arm64BitField {
    	return arm64BitField(i)
    }
    func auxIntToInt128(x int64) int128 {
    	if x != 0 {
    		panic("nonzero int128 not allowed")
    	}
    	return 0
    }
    func auxIntToFlagConstant(x int64) flagConstant {
    	return flagConstant(x)
    }
    
    func auxIntToOp(cc int64) Op {
    	return Op(cc)
    }
    
    func boolToAuxInt(b bool) int64 {
    	if b {
    		return 1
    	}
    	return 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top