Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getLatticeCell (0.15 sec)

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

    		// on them, their lattices must be initially worse Bottom.
    		return
    	}
    
    	oldLt := t.getLatticeCell(val)
    	defer func() {
    		// re-visit all uses of value if its lattice is changed
    		newLt := t.getLatticeCell(val)
    		if !equals(newLt, oldLt) {
    			if int8(oldLt.tag) > int8(newLt.tag) {
    				t.f.Fatalf("Must lower lattice\n")
    			}
    			t.addUses(val)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top