Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for constBool (0.18 sec)

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

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpMIPSMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(val))
    		return true
    	}
    }
    func rewriteValueMIPS_OpConstBool(v *Value) bool {
    	// match: (ConstBool [t])
    	// result: (MOVWconst [b2i32(t)])
    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpMIPSMOVWconst)
    		v.AuxInt = int32ToAuxInt(b2i32(t))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueLOONG64_OpConstBool(v *Value) bool {
    	// match: (ConstBool [t])
    	// result: (MOVVconst [int64(b2i(t))])
    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(b2i(t)))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueMIPS64_OpConstBool(v *Value) bool {
    	// match: (ConstBool [t])
    	// result: (MOVVconst [int64(b2i(t))])
    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(b2i(t)))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueRISCV64_OpConstBool(v *Value) bool {
    	// match: (ConstBool [val])
    	// result: (MOVDconst [int64(b2i(val))])
    	for {
    		val := auxIntToBool(v.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(b2i(val)))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite386.go

    	for {
    		c := auxIntToInt8(v.AuxInt)
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		return true
    	}
    }
    func rewriteValue386_OpConstBool(v *Value) bool {
    	// match: (ConstBool [c])
    	// result: (MOVLconst [b2i32(c)])
    	for {
    		c := auxIntToBool(v.AuxInt)
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(b2i32(c))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		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
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteS390X.go

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpS390XMOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		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
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM.go

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(val))
    		return true
    	}
    }
    func rewriteValueARM_OpConstBool(v *Value) bool {
    	// match: (ConstBool [t])
    	// result: (MOVWconst [b2i32(t)])
    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(b2i32(t))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM64.go

    	for {
    		val := auxIntToInt8(v.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(val))
    		return true
    	}
    }
    func rewriteValueARM64_OpConstBool(v *Value) bool {
    	// match: (ConstBool [t])
    	// result: (MOVDconst [b2i(t)])
    	for {
    		t := auxIntToBool(v.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(b2i(t))
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/opGen.go

    		generic: true,
    	},
    	{
    		name:         "Convert",
    		argLen:       2,
    		resultInArg0: true,
    		zeroWidth:    true,
    		generic:      true,
    	},
    	{
    		name:    "ConstBool",
    		auxType: auxBool,
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "ConstString",
    		auxType: auxString,
    		argLen:  0,
    		generic: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top