Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for b2i (0.04 sec)

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

    		return true
    	}
    }
    func rewriteValuePPC64_OpConstBool(v *Value) bool {
    	// match: (ConstBool [t])
    	// result: (MOVDconst [b2i(t)])
    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(b2i(t))
    		return true
    	}
    }
    func rewriteValuePPC64_OpConstNil(v *Value) bool {
    	// match: (ConstNil)
    	// result: (MOVDconst [0])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	}
    }
    func rewriteValueS390X_OpConstBool(v *Value) bool {
    	// match: (ConstBool [t])
    	// result: (MOVDconst [b2i(t)])
    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpS390XMOVDconst)
    		v.AuxInt = int64ToAuxInt(b2i(t))
    		return true
    	}
    }
    func rewriteValueS390X_OpConstNil(v *Value) bool {
    	// match: (ConstNil)
    	// result: (MOVDconst [0])
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top