Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OpConst8 (0.12 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Add16 (Add16 i:(Const16 <t>) z) x) && (z.Op != OpConst16 && x.Op != OpConst16) => (Add16 i (Add16 <t> z x))
    (Add8  (Add8  i:(Const8  <t>) z) x) && (z.Op != OpConst8  && x.Op != OpConst8)  => (Add8  i (Add8  <t> z x))
    
    // x + (C - z) -> C + (x - z)
    (Add64 (Sub64 i:(Const64 <t>) z) x) && (z.Op != OpConst64 && x.Op != OpConst64) => (Add64 i (Sub64 <t> x z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	case OpConst32F:
    		return rewriteValueRISCV64_OpConst32F(v)
    	case OpConst64:
    		return rewriteValueRISCV64_OpConst64(v)
    	case OpConst64F:
    		return rewriteValueRISCV64_OpConst64F(v)
    	case OpConst8:
    		return rewriteValueRISCV64_OpConst8(v)
    	case OpConstBool:
    		return rewriteValueRISCV64_OpConstBool(v)
    	case OpConstNil:
    		return rewriteValueRISCV64_OpConstNil(v)
    	case OpCopysign:
    		v.Op = OpRISCV64FSGNJD
    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