Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for phi2 (0.03 sec)

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

    //
    //	   b        b           b       b
    //	\ / \ /    | \  /    \ / |     | |
    //	 s0  s1    |  s1      s0 |     | |
    //	  \ /      | /         \ |     | |
    //	   ss      ss           ss      ss
    //
    // If all Phi ops in ss have identical variables for slots corresponding to
    // s0, s1 and b then the branch can be dropped.
    // This optimization often comes up in switch statements with multiple
    // expressions in a case clause:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/cse.go

    // partitionValues partitions the values into equivalence classes
    // based on having all the following features match:
    //   - opcode
    //   - type
    //   - auxint
    //   - aux
    //   - nargs
    //   - block # if a phi op
    //   - first two arg's opcodes and auxint
    //   - NOT first two arg's aux; that can break CSE.
    //
    // partitionValues returns a list of equivalence classes, each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top