7.3. Integer

An integer is a signed 32-bit value. An integer can be represented by an i32 in MLIR.

7.3.1. Declaration

A integer value is declared with the keyword integer.

7.3.2. Null

null is 0 for integer.

7.3.3. Identity

identity is 1 for integer.

7.3.4. Literals

An integer literal is specified in base 10. For example:

1234
2
0

7.3.5. Operations

The following operations are defined between integer values. In all of the usage examples int-expr means some integer yielding expression.

Class

Operation

Symbol

Usage

Associativity

Grouping

parentheses

()

(int-expr)

N/A

Arithmetic

addition

+

int-expr + int-expr

left

subtraction

-

int-expr - int-expr

left

multiplication

*

int-expr * int-expr

left

division

/

int-expr / int-expr

left

remainder

%

int-expr % int-expr

left

exponentiation

^

int-expr ^ int-expr

right

unary negation

-

- int-expr

right

unary plus (no-op)

+

+ int-expr

right

Comparison

less than

<

int-expr < int-expr

left

greater than

>

int-expr > int-expr

left

less than or equal to

<=

int-expr <= int-expr

left

greater than or equal to

>=

int-expr >= int-expr

left

equals

==

int-expr == int-expr

left

not equals

!=

int-expr != int-expr

left

Unary negation produces the additive inverse of the integer expression. Unary plus always produces the same result as the integer expression it is applied to. Remainder mirrors the behaviour of remainder in C99.

This table specifies integer operator precedence. Operators without lines between them have the same level of precedence. Note that parentheses are not included in this list because they are used to override precedence and create new atoms in an expression.

Precedence

Operations

HIGHER

unary +

unary -

^

*

/

%

+

-

<

>

<=

>=

LOWER

==

!=

7.3.6. Type Casting and Type Promotion

To see the types that integer may be cast and/or promoted to, see the sections on Type Casting and Type Promotion respectively.