Header menu logo B2R2

CastKind Type

Casting kinds.

Record fields

Record Field Description

FloatCast

Full Usage: FloatCast

Field type: CastKind
Modifiers: static

Float to Float conversion with different precisions

Field type: CastKind

FtoFCeil

Full Usage: FtoFCeil

Field type: CastKind
Modifiers: static

Float to Float conversion while rounding toward +inf. E.g., 23.2 -> 24.0, and -23.7 -> -23.

Field type: CastKind

FtoFFloor

Full Usage: FtoFFloor

Field type: CastKind
Modifiers: static

Float to Float conversion while rounding toward -inf. E.g., 23.7 -> 23.0, and -23.2 -> -24.

Field type: CastKind

FtoFRound

Full Usage: FtoFRound

Field type: CastKind
Modifiers: static

Float to Float conversion while rounding to nearest integer.. Ties to even.

Field type: CastKind

FtoFTrunc

Full Usage: FtoFTrunc

Field type: CastKind
Modifiers: static

Float to Float conversion while rounding toward zero. E.g. 23.7 -> 23.0, and -23.7 -> -23.

Field type: CastKind

FtoICeil

Full Usage: FtoICeil

Field type: CastKind
Modifiers: static

Float to Integer rounded up conversion (toward +inf). When the given float is too large to be represented as an integer, the result is MIN_INT, i.e., 0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit integers.

Field type: CastKind

FtoIFloor

Full Usage: FtoIFloor

Field type: CastKind
Modifiers: static

Float to Integer rounded down conversion (toward -inf). When the given float is too large to be represented as an integer, the result is MIN_INT, i.e., 0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit integers.

Field type: CastKind

FtoIRound

Full Usage: FtoIRound

Field type: CastKind
Modifiers: static

Float to Nearest Integer rounded conversion. Ties to even. When the given float is too large to be represented as an integer, the result is MIN_INT, i.e., 0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit integers.

Field type: CastKind

FtoITrunc

Full Usage: FtoITrunc

Field type: CastKind
Modifiers: static

Float to Integer truncated conversion (closest to but no greater in absolute value than the infinitely precise result). When the given float is too large to be represented as an integer, the result is MIN_INT, i.e., 0x80000000 for 32-bit integers and 0x8000000000000000 for 64-bit integers.

Field type: CastKind

SIntToFloat

Full Usage: SIntToFloat

Field type: CastKind
Modifiers: static

Signed integer to float conversion

Field type: CastKind

SignExt

Full Usage: SignExt

Field type: CastKind
Modifiers: static

Sign-extending conversion

Field type: CastKind

UIntToFloat

Full Usage: UIntToFloat

Field type: CastKind
Modifiers: static

Unsigned integer to float conversion

Field type: CastKind

ZeroExt

Full Usage: ZeroExt

Field type: CastKind
Modifiers: static

Zero-extending conversion

Field type: CastKind

Type something to start searching.