-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CIR] Extend support for floating point attributes
This commit extends the support for floating point attributes parsing by using the new `AsmParser::parseFloat(fltSemnatics, APFloat&)` interface. As a drive-by, this commit also harmonizes the cir.fp print/parse namespace usage, and adds the constraint of supporting only "CIRFPType"s for cir.fp in tablegen instead of verifying it manually in the parsing logic.
- Loading branch information
Showing
7 changed files
with
202 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// RUN: cir-opt %s -split-input-file -allow-unregistered-dialect -verify-diagnostics | FileCheck %s | ||
|
||
cir.func @float_attrs_pass() { | ||
"test.float_attrs"() { | ||
// CHECK: float_attr = #cir.fp<2.000000e+00> : !cir.float | ||
float_attr = #cir.fp<2.> : !cir.float | ||
} : () -> () | ||
"test.float_attrs"() { | ||
// CHECK: float_attr = #cir.fp<-2.000000e+00> : !cir.float | ||
float_attr = #cir.fp<-2.> : !cir.float | ||
} : () -> () | ||
"test.float_attrs"() { | ||
// CHECK: float_attr = #cir.fp<2.000000e+00> : !cir.double | ||
float_attr = #cir.fp<2.> : !cir.double | ||
} : () -> () | ||
"test.float_attrs"() { | ||
// CHECK: float_attr = #cir.fp<2.000000e+00> : !cir.long_double<!cir.f80> | ||
float_attr = #cir.fp<2.> : !cir.long_double<!cir.f80> | ||
} : () -> () | ||
"test.float_attrs"() { | ||
// CHECK: float_attr = #cir.fp<2.000000e+00> : !cir.long_double<!cir.double> | ||
float_attr = #cir.fp<2.> : !cir.long_double<!cir.double> | ||
} : () -> () | ||
cir.return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
// RUN: cir-opt %s | FileCheck %s | ||
|
||
// Adapted from mlir/test/IR/parser.mlir | ||
|
||
// CHECK-LABEL: @f32_special_values | ||
cir.func @f32_special_values() { | ||
// F32 signaling NaNs. | ||
// CHECK: cir.const(#cir.fp<0x7F800001> : !cir.float) : !cir.float | ||
%0 = cir.const(#cir.fp<0x7F800001> : !cir.float) : !cir.float | ||
// CHECK: cir.const(#cir.fp<0x7FBFFFFF> : !cir.float) : !cir.float | ||
%1 = cir.const(#cir.fp<0x7FBFFFFF> : !cir.float) : !cir.float | ||
|
||
// F32 quiet NaNs. | ||
// CHECK: cir.const(#cir.fp<0x7FC00000> : !cir.float) : !cir.float | ||
%2 = cir.const(#cir.fp<0x7FC00000> : !cir.float) : !cir.float | ||
// CHECK: cir.const(#cir.fp<0xFFFFFFFF> : !cir.float) : !cir.float | ||
%3 = cir.const(#cir.fp<0xFFFFFFFF> : !cir.float) : !cir.float | ||
|
||
// F32 positive infinity. | ||
// CHECK: cir.const(#cir.fp<0x7F800000> : !cir.float) : !cir.float | ||
%4 = cir.const(#cir.fp<0x7F800000> : !cir.float) : !cir.float | ||
// F32 negative infinity. | ||
// CHECK: cir.const(#cir.fp<0xFF800000> : !cir.float) : !cir.float | ||
%5 = cir.const(#cir.fp<0xFF800000> : !cir.float) : !cir.float | ||
|
||
cir.return | ||
} | ||
|
||
// CHECK-LABEL: @f64_special_values | ||
cir.func @f64_special_values() { | ||
// F64 signaling NaNs. | ||
// CHECK: cir.const(#cir.fp<0x7FF0000000000001> : !cir.double) : !cir.double | ||
%0 = cir.const(#cir.fp<0x7FF0000000000001> : !cir.double) : !cir.double | ||
// CHECK: cir.const(#cir.fp<0x7FF8000000000000> : !cir.double) : !cir.double | ||
%1 = cir.const(#cir.fp<0x7FF8000000000000> : !cir.double) : !cir.double | ||
|
||
// F64 quiet NaNs. | ||
// CHECK: cir.const(#cir.fp<0x7FF0000001000000> : !cir.double) : !cir.double | ||
%2 = cir.const(#cir.fp<0x7FF0000001000000> : !cir.double) : !cir.double | ||
// CHECK: cir.const(#cir.fp<0xFFF0000001000000> : !cir.double) : !cir.double | ||
%3 = cir.const(#cir.fp<0xFFF0000001000000> : !cir.double) : !cir.double | ||
|
||
// F64 positive infinity. | ||
// CHECK: cir.const(#cir.fp<0x7FF0000000000000> : !cir.double) : !cir.double | ||
%4 = cir.const(#cir.fp<0x7FF0000000000000> : !cir.double) : !cir.double | ||
// F64 negative infinity. | ||
// CHECK: cir.const(#cir.fp<0xFFF0000000000000> : !cir.double) : !cir.double | ||
%5 = cir.const(#cir.fp<0xFFF0000000000000> : !cir.double) : !cir.double | ||
|
||
// Check that values that can't be represented with the default format, use | ||
// hex instead. | ||
// CHECK: cir.const(#cir.fp<0xC1CDC00000000000> : !cir.double) : !cir.double | ||
%6 = cir.const(#cir.fp<0xC1CDC00000000000> : !cir.double) : !cir.double | ||
|
||
cir.return | ||
} | ||
|
||
// CHECK-LABEL: @f80_special_values | ||
cir.func @f80_special_values() { | ||
// F80 signaling NaNs. | ||
// CHECK: cir.const(#cir.fp<0x7FFFE000000000000001> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
%0 = cir.const(#cir.fp<0x7FFFE000000000000001> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
// CHECK: cir.const(#cir.fp<0x7FFFB000000000000011> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
%1 = cir.const(#cir.fp<0x7FFFB000000000000011> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
|
||
// F80 quiet NaNs. | ||
// CHECK: cir.const(#cir.fp<0x7FFFC000000000100000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
%2 = cir.const(#cir.fp<0x7FFFC000000000100000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
// CHECK: cir.const(#cir.fp<0x7FFFE000000001000000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
%3 = cir.const(#cir.fp<0x7FFFE000000001000000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
|
||
// F80 positive infinity. | ||
// CHECK: cir.const(#cir.fp<0x7FFF8000000000000000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
%4 = cir.const(#cir.fp<0x7FFF8000000000000000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
// F80 negative infinity. | ||
// CHECK: cir.const(#cir.fp<0xFFFF8000000000000000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
%5 = cir.const(#cir.fp<0xFFFF8000000000000000> : !cir.long_double<!cir.f80>) : !cir.long_double<!cir.f80> | ||
|
||
cir.return | ||
} | ||
|
||
// We want to print floats in exponential notation with 6 significant digits, | ||
// but it may lead to precision loss when parsing back, in which case we print | ||
// the decimal form instead. | ||
// CHECK-LABEL: @f32_potential_precision_loss() | ||
cir.func @f32_potential_precision_loss() { | ||
// CHECK: cir.const(#cir.fp<1.23697901> : !cir.float) : !cir.float | ||
%0 = cir.const(#cir.fp<1.23697901> : !cir.float) : !cir.float | ||
cir.return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters