Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for is32BitInt (0.13 sec)

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

    // Lowering loads
    (Load <t> ptr mem) && (is64BitInt(t) || isPtr(t)) => (MOVDload ptr mem)
    (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)
    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

    }
    
    func is32BitFloat(t *types.Type) bool {
    	return t.Size() == 4 && t.IsFloat()
    }
    
    func is64BitInt(t *types.Type) bool {
    	return t.Size() == 8 && t.IsInteger()
    }
    
    func is32BitInt(t *types.Type) bool {
    	return t.Size() == 4 && t.IsInteger()
    }
    
    func is16BitInt(t *types.Type) bool {
    	return t.Size() == 2 && t.IsInteger()
    }
    
    func is8BitInt(t *types.Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top