Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LOGICAL (0.08 sec)

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

    (Neg(64|32|16|8) ...) => (NEG ...)
    (Neg(64|32)F ...) => (FNEG ...)
    
    (Com(64|32|16|8) x) => (NOR x x)
    
    // Lowering boolean ops
    (AndB ...) => (AND ...)
    (OrB ...) => (OR ...)
    (Not x) => (XORconst [1] x)
    
    // Merge logical operations
    (AND x (NOR y y)) => (ANDN x y)
    (OR x (NOR y y)) => (ORN x y)
    
    // Lowering comparisons
    (EqB x y)  => (ANDconst [1] (EQV x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    			// we can stop searching when we leave the block.
    			continue
    		}
    		if v.Op == OpPhi {
    			// A Phi implies we have reached the top of the block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			continue
    		}
    		if v.Type.IsTuple() && v.Type.FieldType(1).IsMemory() {
    			// We could handle this situation however it is likely
    			// to be very rare.
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    See <<#project_builddir, the deprecation entry>> for details.
    
    ==== `TestLauncher` API no longer ignores build failures
    
    The `TestLauncher` interface is part of the Tooling API, specialized for running tests.
    It is a logical extension of the `BuildLauncher` that can only launch tasks.
    A discrepancy has been reported in their behavior: if the same failing test is executed, `BuildLauncher` will report a build failure but `TestLauncher` won't.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top