mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-12 03:06:05 +00:00

Summary: We got a radar that printing small floats is not very user-friendly in LLDB as we print them with up to 100 leading zeroes before starting to use scientific notation. This patch changes this by already using scientific notation when we hit 6 padding zeroes by default and moves this value into a target setting so that users can just set this number back to 100 if they for some reason preferred the old behaviour. This new setting is influencing how we format data, so that's why we have to reset the data visualisation cache when it is changed. Note that we have always been using scientific notation for large numbers because it seems that the LLVM implementation doesn't support printing out the padding zeroes for them. I would have fixed that if it was trivial, but looking at the LLVM implementation for this it seems that this is not as trivial as it sounds. I would say we look into this if we ever get a bug report about someone wanting to have a large amount of trailing zeroes in their numbers instead of using scientific notation. Fixes rdar://39744137 Reviewers: #lldb, clayborg Reviewed By: clayborg Subscribers: JDevlieghere, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D67001 llvm-svn: 370880
122 lines
6.6 KiB
C
122 lines
6.6 KiB
C
float f_neg3 = 1.234567 / 1e3;
|
|
float f_neg4 = 1.234567 / 1e4;
|
|
float f_neg5 = 1.234567 / 1e5;
|
|
float f_neg6 = 1.234567 / 1e6;
|
|
float f_neg7 = 1.234567 / 1e7;
|
|
float f_neg8 = 1.234567 / 1e8;
|
|
float f_neg20 = 1.234567 / 1e20;
|
|
float f_neg30 = 1.234567 / 1e30;
|
|
|
|
float f_3 = 1.234567 * 1e3;
|
|
float f_4 = 1.234567 * 1e4;
|
|
float f_5 = 1.234567 * 1e5;
|
|
float f_6 = 1.234567 * 1e6;
|
|
float f_7 = 1.234567 * 1e7;
|
|
float f_8 = 1.234567 * 1e8;
|
|
float f_20 = 1.234567 * 1e20;
|
|
float f_30 = 1.234567 * 1e30;
|
|
|
|
double d_neg3 = 1.234567 / 1e3;
|
|
double d_neg4 = 1.234567 / 1e4;
|
|
double d_neg5 = 1.234567 / 1e5;
|
|
double d_neg6 = 1.234567 / 1e6;
|
|
double d_neg7 = 1.234567 / 1e7;
|
|
double d_neg8 = 1.234567 / 1e8;
|
|
double d_neg20 = 1.234567 / 1e20;
|
|
double d_neg30 = 1.234567 / 1e30;
|
|
double d_neg50 = 1.234567 / 1e50;
|
|
double d_neg250 = 1.234567 / 1e250;
|
|
|
|
double d_3 = 1.234567 * 1e3;
|
|
double d_4 = 1.234567 * 1e4;
|
|
double d_5 = 1.234567 * 1e5;
|
|
double d_6 = 1.234567 * 1e6;
|
|
double d_7 = 1.234567 * 1e7;
|
|
double d_8 = 1.234567 * 1e8;
|
|
double d_20 = 1.234567 * 1e20;
|
|
double d_30 = 1.234567 * 1e30;
|
|
double d_50 = 1.234567 * 1e50;
|
|
double d_250 = 1.234567 * 1e250;
|
|
|
|
int main (int argc, char const *argv[]) {
|
|
//% # Default setting should be 6.
|
|
//% self.expect("frame variable f_neg3", substrs=["0.00123456"])
|
|
//% self.expect("frame variable f_neg4", substrs=["0.000123456"])
|
|
//% self.expect("frame variable f_neg5", substrs=["0.0000123456"])
|
|
//% self.expect("frame variable f_neg6", substrs=["0.00000123456"])
|
|
//% self.expect("frame variable f_neg7", substrs=["1.234567", "E-7"])
|
|
//% self.expect("frame variable f_neg8", substrs=["1.23456", "E-8"])
|
|
//% self.expect("frame variable f_neg20", substrs=["E-20"])
|
|
//% self.expect("frame variable f_neg30", substrs=["E-30"])
|
|
//% self.expect("frame variable f_3", substrs=["1234.56"])
|
|
//% self.expect("frame variable f_4", substrs=["12345.6"])
|
|
//% self.expect("frame variable f_5", substrs=["123456"])
|
|
//% self.expect("frame variable f_6", substrs=["123456"])
|
|
//% self.expect("frame variable f_7", substrs=["123456"])
|
|
//% self.expect("frame variable f_8", substrs=["123456"])
|
|
//% self.expect("frame variable f_20", substrs=["E+20"])
|
|
//% self.expect("frame variable f_30", substrs=["E+30"])
|
|
//% self.expect("frame variable d_neg3", substrs=["0.00123456"])
|
|
//% self.expect("frame variable d_neg4", substrs=["0.000123456"])
|
|
//% self.expect("frame variable d_neg5", substrs=["0.0000123456"])
|
|
//% self.expect("frame variable d_neg6", substrs=["0.00000123456"])
|
|
//% self.expect("frame variable d_neg7", substrs=["1.23456", "E-7"])
|
|
//% self.expect("frame variable d_neg8", substrs=["1.23456", "E-8"])
|
|
//% self.expect("frame variable d_neg20", substrs=["1.23456", "E-20"])
|
|
//% self.expect("frame variable d_neg30", substrs=["1.23456", "E-30"])
|
|
//% self.expect("frame variable d_neg50", substrs=["1.23456", "E-50"])
|
|
//% self.expect("frame variable d_neg250", substrs=["E-250"])
|
|
//% self.expect("frame variable d_3", substrs=["1234.56"])
|
|
//% self.expect("frame variable d_4", substrs=["12345.6"])
|
|
//% self.expect("frame variable d_5", substrs=["123456"])
|
|
//% self.expect("frame variable d_6", substrs=["1234567"])
|
|
//% self.expect("frame variable d_7", substrs=["1234567"])
|
|
//% self.expect("frame variable d_8", substrs=["1234567"])
|
|
//% self.expect("frame variable d_20", substrs=["1.23456", "E+20"])
|
|
//% self.expect("frame variable d_30", substrs=["1.23456", "E+30"])
|
|
//% self.expect("frame variable d_50", substrs=["1.23456", "E+50"])
|
|
//% self.expect("frame variable d_250", substrs=["1.23456", "E+250"])
|
|
//% # Now change the setting to print all the zeroes.
|
|
//% # Note that changing this setting should invalidate the data visualizer
|
|
//% # cache so that the new setting is used in the following calls.
|
|
//% self.runCmd("settings set target.max-zero-padding-in-float-format 9999")
|
|
//% self.expect("frame variable f_neg3", substrs=["0.00123456"])
|
|
//% self.expect("frame variable f_neg4", substrs=["0.000123456"])
|
|
//% self.expect("frame variable f_neg5", substrs=["0.0000123456"])
|
|
//% self.expect("frame variable f_neg6", substrs=["0.00000123456"])
|
|
//% self.expect("frame variable f_neg7", substrs=["0.000000123456"])
|
|
//% self.expect("frame variable f_neg8", substrs=["0.0000000123456"])
|
|
//% self.expect("frame variable f_neg20", substrs=["0.0000000000000000000123456"])
|
|
//% self.expect("frame variable f_neg30", substrs=["0.00000000000000000000000000000123456"])
|
|
//% self.expect("frame variable f_3", substrs=["1234.56"])
|
|
//% self.expect("frame variable f_4", substrs=["12345.6"])
|
|
//% self.expect("frame variable f_5", substrs=["123456"])
|
|
//% self.expect("frame variable f_6", substrs=["1234567"])
|
|
//% self.expect("frame variable f_7", substrs=["1234567"])
|
|
//% self.expect("frame variable f_8", substrs=["1234567"])
|
|
//% self.expect("frame variable f_20", substrs=["E+20"])
|
|
//% self.expect("frame variable f_30", substrs=["E+30"])
|
|
//% self.expect("frame variable d_neg3", substrs=["0.00123456"])
|
|
//% self.expect("frame variable d_neg4", substrs=["0.000123456"])
|
|
//% self.expect("frame variable d_neg5", substrs=["0.0000123456"])
|
|
//% self.expect("frame variable d_neg6", substrs=["0.00000123456"])
|
|
//% self.expect("frame variable d_neg7", substrs=["0.000000123456"])
|
|
//% self.expect("frame variable d_neg8", substrs=["0.0000000123456"])
|
|
//% self.expect("frame variable d_neg20", substrs=["0.0000000000000000000123456"])
|
|
//% self.expect("frame variable d_neg30", substrs=["0.000000000000000000000000000001234567"])
|
|
//% self.expect("frame variable d_neg50", substrs=["0.0000000000000000000000000000000000000000000000000123456"])
|
|
//% self.expect("frame variable d_neg250", substrs=["0.000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456"])
|
|
//% self.expect("frame variable d_3", substrs=["1234.56"])
|
|
//% self.expect("frame variable d_4", substrs=["12345.6"])
|
|
//% self.expect("frame variable d_5", substrs=["123456"])
|
|
//% self.expect("frame variable d_6", substrs=["1234567"])
|
|
//% self.expect("frame variable d_7", substrs=["1234567"])
|
|
//% self.expect("frame variable d_8", substrs=["1234567"])
|
|
//% # Positive numbers are not affected by this setting.
|
|
//% self.expect("frame variable d_20", substrs=["1.23456", "E+20"])
|
|
//% self.expect("frame variable d_30", substrs=["1.23456", "E+30"])
|
|
//% self.expect("frame variable d_50", substrs=["1.23456", "E+50"])
|
|
//% self.expect("frame variable d_250", substrs=["1.23456", "E+250"])
|
|
return 0;
|
|
}
|