summaryrefslogtreecommitdiff
path: root/utils/fpcmp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-20 03:12:18 +0000
committerChris Lattner <sabre@nondot.org>2004-06-20 03:12:18 +0000
commit8e6d2bb8fa3e4d62fa3e0623d84381fcc4dc4330 (patch)
treea9fb2329146fd4dc57838cd578028cc1eccaf945 /utils/fpcmp
parent218a8223e62c41ae6318e28e8f4c672fcfbb5082 (diff)
downloadllvm-8e6d2bb8fa3e4d62fa3e0623d84381fcc4dc4330.tar.gz
llvm-8e6d2bb8fa3e4d62fa3e0623d84381fcc4dc4330.tar.bz2
llvm-8e6d2bb8fa3e4d62fa3e0623d84381fcc4dc4330.tar.xz
Make fpcmp handle running off of the beginning or end of the file correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14259 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/fpcmp')
-rw-r--r--utils/fpcmp/fpcmp.cpp38
1 files changed, 35 insertions, 3 deletions
diff --git a/utils/fpcmp/fpcmp.cpp b/utils/fpcmp/fpcmp.cpp
index 6c3354c4e0..e45c3c0a27 100644
--- a/utils/fpcmp/fpcmp.cpp
+++ b/utils/fpcmp/fpcmp.cpp
@@ -104,6 +104,23 @@ static void CompareNumbers(char *&F1P, char *&F2P, char *F1End, char *F2End) {
F1P = F1NumEnd; F2P = F2NumEnd;
}
+// PadFileIfNeeded - If the files are not identical, we will have to be doing
+// numeric comparisons in here. There are bad cases involved where we (i.e.,
+// strtod) might run off the beginning or end of the file if it starts or ends
+// with a number. Because of this, if needed, we pad the file so that it starts
+// and ends with a null character.
+static void PadFileIfNeeded(char *&FileStart, char *&FileEnd, char *&FP) {
+ if (isNumberChar(FileStart[0]) || isNumberChar(FileEnd[-1])) {
+ unsigned FileLen = FileEnd-FileStart;
+ char *NewFile = new char[FileLen+2];
+ NewFile[0] = 0; // Add null padding
+ NewFile[FileLen+1] = 0; // Add null padding
+ memcpy(NewFile+1, FileStart, FileLen);
+ FP = NewFile+(FP-FileStart)+1;
+ FileStart = NewFile+1;
+ FileEnd = FileStart+FileLen;
+ }
+}
int main(int argc, char **argv) {
cl::ParseCommandLineOptions(argc, argv);
@@ -119,9 +136,20 @@ int main(int argc, char **argv) {
char *File2End = File2Start+File2Len;
char *F1P = File1Start;
char *F2P = File2Start;
+
+ // Scan for the end of file or first difference.
+ while (F1P < File1End && F2P < File2End && *F1P == *F2P)
+ ++F1P, ++F2P;
+
+ // Common case: identifical files.
+ if (F1P == File1End && F2P == File2End) return 0;
+
+ // If the files need padding, do so now.
+ PadFileIfNeeded(File1Start, File1End, F1P);
+ PadFileIfNeeded(File2Start, File2End, F2P);
while (1) {
- // Scan for the end of file or first difference.
+ // Scan for the end of file or next difference.
while (F1P < File1End && F2P < File2End && *F1P == *F2P)
++F1P, ++F2P;
@@ -140,9 +168,13 @@ int main(int argc, char **argv) {
// Okay, we reached the end of file. If both files are at the end, we
// succeeded.
- if (F1P >= File1End && F2P >= File2End) return 0;
+ bool F1AtEnd = F1P >= File1End;
+ bool F2AtEnd = F2P >= File2End;
+ if (F1AtEnd & F2AtEnd) return 0;
- // Otherwise, we might have run off the end due to a number, backup and retry.
+ // Otherwise, we might have run off the end due to a number: backup and retry.
+ if (F1AtEnd && isNumberChar(F1P[-1])) --F1P;
+ if (F2AtEnd && isNumberChar(F2P[-1])) --F2P;
F1P = BackupNumber(F1P, File1Start);
F2P = BackupNumber(F2P, File2Start);