File: GHC_Num_Integer.primitives.yaml

package info (click to toggle)
haskell-clash-lib 1.8.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,108 kB
  • sloc: haskell: 28,988; tcl: 474; ansic: 4; makefile: 4
file content (75 lines) | stat: -rw-r--r-- 2,950 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
- Primitive:
    name: GHC.Num.Integer.IS
    comment: Needed to make the evaluator handle this constructor strictly
    primType: Constructor
    warning: 'GHC.Num.Integer.IS: Integers are dynamically sized in simulation, but
      fixed-length after synthesis. Use carefully.'
    workInfo: Never
- Primitive:
    name: GHC.Num.Integer.IP
    comment: Needed to make the evaluator handle this constructor strictly
    primType: Constructor
    warning: 'GHC.Num.Integer.IP: Integers are dynamically sized in simulation, but
      fixed-length after synthesis. Use carefully.'
    workInfo: Never
- Primitive:
    name: GHC.Num.Integer.IN
    comment: Needed to make the evaluator handle this constructor strictly
    primType: Constructor
    warning: 'GHC.Num.Integer.IN: Integers are dynamically sized in simulation, but
      fixed-length after synthesis. Use carefully.'
    workInfo: Never
- Primitive:
    name: GHC.Num.Integer.integerFromNatural
    primType: Function
    warning: 'GHC.Num.Integer.integerFromNatural: No blackbox available without size
      inference for Natural and Integer'
    workInfo: Never
- BlackBox:
    name: GHC.Num.Integer.integerAdd
    kind: Expression
    type: 'integerAdd :: Integer
      -> Integer -> Integer'
    template: ~ARG[0] + ~ARG[1]
    warning: 'GHC.Num.Integer.integerAdd: Integers are dynamically sized in simulation,
      but fixed-length after synthesis. Use carefully.'
- BlackBox:
    name: GHC.Num.Integer.integerSub
    kind: Expression
    type: 'integerSub :: Integer
      -> Integer -> Integer'
    template: ~ARG[0] - ~ARG[1]
    warning: 'GHC.Num.Integer.integerSub: Integers are dynamically sized in simulation,
      but fixed-length after synthesis. Use carefully.'
- BlackBox:
    name: GHC.Num.Integer.integerLe
    kind: Expression
    type: 'integerLe :: Integer
      -> Integer -> Bool'
    template: ~ARG[0] <= ~ARG[1]
    warning: 'GHC.Num.Integer.integerLe: Integers are dynamically sized in simulation,
      but fixed-length after synthesis. Use carefully.'
- BlackBox:
    name: GHC.Num.Integer.integerGt
    kind: Expression
    type: 'integerGt :: Integer
      -> Integer -> Bool'
    template: ~ARG[0] > ~ARG[1]
    warning: 'GHC.Num.Integer.integerGt: Integers are dynamically sized in simulation,
      but fixed-length after synthesis. Use carefully.'
- BlackBox:
    name: GHC.Num.Integer.integerLt
    kind: Expression
    type: 'integerLt :: Integer
      -> Integer -> Bool'
    template: ~ARG[0] < ~ARG[1]
    warning: 'GHC.Num.Integer.integerLt: Integers are dynamically sized in simulation,
      but fixed-length after synthesis. Use carefully.'
- BlackBox:
    name: GHC.Num.Integer.integerGe
    kind: Expression
    type: 'integerGe :: Integer
      -> Integer -> Bool'
    template: ~ARG[0] >= ~ARG[1]
    warning: 'GHC.Num.Integer.integerGe: Integers are dynamically sized in simulation,
      but fixed-length after synthesis. Use carefully.'