Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for unsigned (0.56 sec)

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

    (MOVBZreg x:(Arg <t>)) && !t.IsSigned() && t.Size() == 1 => x
    (MOVHZreg x:(Arg <t>)) && !t.IsSigned() && t.Size() <= 2 => x
    (MOVWZreg x:(Arg <t>)) && !t.IsSigned() && t.Size() <= 4 => x
    
    // Remove sign extensions after argument load.
    (MOVBreg x:(Arg <t>)) && t.IsSigned() && t.Size() == 1 => x
    (MOVHreg x:(Arg <t>)) && t.IsSigned() && t.Size() <= 2 => x
    (MOVWreg x:(Arg <t>)) && t.IsSigned() && t.Size() <= 4 => x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (TailCall ...) => (CALLtail ...)
    
    // Lowering conditional moves
    // If the condition is a SETxx, we can just run a CMOV from the comparison that was
    // setting the flags.
    // Legend: HI=unsigned ABOVE, CS=unsigned BELOW, CC=unsigned ABOVE EQUAL, LS=unsigned BELOW EQUAL
    (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && (is64BitInt(t) || isPtr(t))
        => (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS|EQF|NEF|GTF|GEF) y x cond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Load <t> ptr mem) && is32BitInt(t) &&  t.IsSigned() => (MOVWload ptr mem)
    (Load <t> ptr mem) && is32BitInt(t) && !t.IsSigned() => (MOVWZload ptr mem)
    (Load <t> ptr mem) && is16BitInt(t) &&  t.IsSigned() => (MOVHload ptr mem)
    (Load <t> ptr mem) && is16BitInt(t) && !t.IsSigned() => (MOVHZload ptr mem)
    (Load <t> ptr mem) && t.IsBoolean() => (MOVBZload ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        // receiver is needed by the resolver. The dispatch and extension receivers are only assigned after resolution when a
                        // candidate is selected.
                        source = ******@****.***
                        annotations.addAll(******@****.***tions)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM.rules

    // loads
    (Load <t> ptr mem) && t.IsBoolean() => (MOVBUload ptr mem)
    (Load <t> ptr mem) && (is8BitInt(t)  &&  t.IsSigned()) => (MOVBload ptr mem)
    (Load <t> ptr mem) && (is8BitInt(t)  && !t.IsSigned()) => (MOVBUload ptr mem)
    (Load <t> ptr mem) && (is16BitInt(t) &&  t.IsSigned()) => (MOVHload ptr mem)
    (Load <t> ptr mem) && (is16BitInt(t) && !t.IsSigned()) => (MOVHUload ptr mem)
    (Load <t> ptr mem) && (is32BitInt(t) || isPtr(t)) => (MOVWload ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top