1ee3c74fbSChris Lattner //===- FileCheck.cpp - Check that File's Contents match what is expected --===// 2ee3c74fbSChris Lattner // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6ee3c74fbSChris Lattner // 7ee3c74fbSChris Lattner //===----------------------------------------------------------------------===// 8ee3c74fbSChris Lattner // 9ee3c74fbSChris Lattner // FileCheck does a line-by line check of a file that validates whether it 10ee3c74fbSChris Lattner // contains the expected content. This is useful for regression tests etc. 11ee3c74fbSChris Lattner // 12b5ecceffSJames Henderson // This program exits with an exit status of 2 on error, exit status of 0 if 13ee3c74fbSChris Lattner // the file matched the expected contents, and exit status of 1 if it did not 14ee3c74fbSChris Lattner // contain the expected contents. 15ee3c74fbSChris Lattner // 16ee3c74fbSChris Lattner //===----------------------------------------------------------------------===// 17ee3c74fbSChris Lattner 185ffd940aSRaphael Isemann #include "llvm/FileCheck/FileCheck.h" 19ee3c74fbSChris Lattner #include "llvm/Support/CommandLine.h" 20197194b6SRui Ueyama #include "llvm/Support/InitLLVM.h" 213e66509fSJoel E. Denny #include "llvm/Support/Process.h" 223c5d267eSJoel E. Denny #include "llvm/Support/WithColor.h" 23ee3c74fbSChris Lattner #include "llvm/Support/raw_ostream.h" 24010982f7SRainer Orth #include <cmath> 25ee3c74fbSChris Lattner using namespace llvm; 26ee3c74fbSChris Lattner 27dbb757f4SJoel E. Denny static cl::extrahelp FileCheckOptsEnv( 28dbb757f4SJoel E. Denny "\nOptions are parsed from the environment variable FILECHECK_OPTS and\n" 29dbb757f4SJoel E. Denny "from the command line.\n"); 30dbb757f4SJoel E. Denny 31ee3c74fbSChris Lattner static cl::opt<std::string> 323c5d267eSJoel E. Denny CheckFilename(cl::Positional, cl::desc("<check-file>"), cl::Optional); 33ee3c74fbSChris Lattner 34ee3c74fbSChris Lattner static cl::opt<std::string> 35ee3c74fbSChris Lattner InputFilename("input-file", cl::desc("File to check (defaults to stdin)"), 36ee3c74fbSChris Lattner cl::init("-"), cl::value_desc("filename")); 37ee3c74fbSChris Lattner 38e8f2fb20SChandler Carruth static cl::list<std::string> CheckPrefixes( 39e8f2fb20SChandler Carruth "check-prefix", 40ee3c74fbSChris Lattner cl::desc("Prefix to use from check file (defaults to 'CHECK')")); 41fd557cb0SDaniel Sanders static cl::alias CheckPrefixesAlias( 42fd557cb0SDaniel Sanders "check-prefixes", cl::aliasopt(CheckPrefixes), cl::CommaSeparated, 43fd557cb0SDaniel Sanders cl::NotHidden, 44fd557cb0SDaniel Sanders cl::desc( 45fd557cb0SDaniel Sanders "Alias for -check-prefix permitting multiple comma separated values")); 46ee3c74fbSChris Lattner 47a1fd1882SJoel E. Denny static cl::list<std::string> CommentPrefixes( 48a1fd1882SJoel E. Denny "comment-prefixes", cl::CommaSeparated, cl::Hidden, 49a1fd1882SJoel E. Denny cl::desc("Comma-separated list of comment prefixes to use from check file\n" 50a1fd1882SJoel E. Denny "(defaults to 'COM,RUN'). Please avoid using this feature in\n" 51a1fd1882SJoel E. Denny "LLVM's LIT-based test suites, which should be easier to\n" 52a1fd1882SJoel E. Denny "maintain if they all follow a consistent comment style. This\n" 53a1fd1882SJoel E. Denny "feature is meant for non-LIT test suites using FileCheck.")); 54a1fd1882SJoel E. Denny 55e8f2fb20SChandler Carruth static cl::opt<bool> NoCanonicalizeWhiteSpace( 56e8f2fb20SChandler Carruth "strict-whitespace", 572c3e5cdfSChris Lattner cl::desc("Do not treat all horizontal whitespace as equivalent")); 582c3e5cdfSChris Lattner 595b5b2fd2SKai Nacke static cl::opt<bool> IgnoreCase( 605b5b2fd2SKai Nacke "ignore-case", 615b5b2fd2SKai Nacke cl::desc("Use case-insensitive matching")); 625b5b2fd2SKai Nacke 6356ccdbbdSAlexander Kornienko static cl::list<std::string> ImplicitCheckNot( 6456ccdbbdSAlexander Kornienko "implicit-check-not", 6556ccdbbdSAlexander Kornienko cl::desc("Add an implicit negative check with this pattern to every\n" 6656ccdbbdSAlexander Kornienko "positive check. This can be used to ensure that no instances of\n" 6756ccdbbdSAlexander Kornienko "this pattern occur which are not matched by a positive pattern"), 6856ccdbbdSAlexander Kornienko cl::value_desc("pattern")); 6956ccdbbdSAlexander Kornienko 70a5e233bfSThomas Preud'homme static cl::list<std::string> 71a5e233bfSThomas Preud'homme GlobalDefines("D", cl::AlwaysPrefix, 7246e1fd61SAlexander Richardson cl::desc("Define a variable to be used in capture patterns."), 7346e1fd61SAlexander Richardson cl::value_desc("VAR=VALUE")); 7446e1fd61SAlexander Richardson 751b9f936fSJustin Bogner static cl::opt<bool> AllowEmptyInput( 761b9f936fSJustin Bogner "allow-empty", cl::init(false), 771b9f936fSJustin Bogner cl::desc("Allow the input file to be empty. This is useful when making\n" 781b9f936fSJustin Bogner "checks that some error message does not occur, for example.")); 791b9f936fSJustin Bogner 80871d658cSMircea Trofin static cl::opt<bool> AllowUnusedPrefixes( 8187dbdd2eSFangrui Song "allow-unused-prefixes", cl::init(false), cl::ZeroOrMore, 82871d658cSMircea Trofin cl::desc("Allow prefixes to be specified but not appear in the test.")); 83871d658cSMircea Trofin 8485913ccaSJames Y Knight static cl::opt<bool> MatchFullLines( 8585913ccaSJames Y Knight "match-full-lines", cl::init(false), 8685913ccaSJames Y Knight cl::desc("Require all positive matches to cover an entire input line.\n" 8785913ccaSJames Y Knight "Allows leading and trailing whitespace if --strict-whitespace\n" 8885913ccaSJames Y Knight "is not also passed.")); 8985913ccaSJames Y Knight 90f55e72a5SArtem Belevich static cl::opt<bool> EnableVarScope( 91f55e72a5SArtem Belevich "enable-var-scope", cl::init(false), 92f55e72a5SArtem Belevich cl::desc("Enables scope for regex variables. Variables with names that\n" 93f55e72a5SArtem Belevich "do not start with '$' will be reset at the beginning of\n" 94f55e72a5SArtem Belevich "each CHECK-LABEL block.")); 95f55e72a5SArtem Belevich 96bcf5b441SJoel E. Denny static cl::opt<bool> AllowDeprecatedDagOverlap( 97bcf5b441SJoel E. Denny "allow-deprecated-dag-overlap", cl::init(false), 98bcf5b441SJoel E. Denny cl::desc("Enable overlapping among matches in a group of consecutive\n" 99bcf5b441SJoel E. Denny "CHECK-DAG directives. This option is deprecated and is only\n" 100bcf5b441SJoel E. Denny "provided for convenience as old tests are migrated to the new\n" 101bcf5b441SJoel E. Denny "non-overlapping CHECK-DAG implementation.\n")); 102bcf5b441SJoel E. Denny 103352695c3SJoel E. Denny static cl::opt<bool> Verbose( 104782585a2SJoel E. Denny "v", cl::init(false), cl::ZeroOrMore, 105352695c3SJoel E. Denny cl::desc("Print directive pattern matches, or add them to the input dump\n" 106352695c3SJoel E. Denny "if enabled.\n")); 107dc5ba317SJoel E. Denny 108dc5ba317SJoel E. Denny static cl::opt<bool> VerboseVerbose( 109782585a2SJoel E. Denny "vv", cl::init(false), cl::ZeroOrMore, 110dc5ba317SJoel E. Denny cl::desc("Print information helpful in diagnosing internal FileCheck\n" 111352695c3SJoel E. Denny "issues, or add it to the input dump if enabled. Implies\n" 112352695c3SJoel E. Denny "-v.\n")); 1133c5d267eSJoel E. Denny 114fdde18a7SJoel E. Denny // The order of DumpInputValue members affects their precedence, as documented 115fdde18a7SJoel E. Denny // for -dump-input below. 1163c5d267eSJoel E. Denny enum DumpInputValue { 1173c5d267eSJoel E. Denny DumpInputNever, 1183c5d267eSJoel E. Denny DumpInputFail, 119fdde18a7SJoel E. Denny DumpInputAlways, 120fdde18a7SJoel E. Denny DumpInputHelp 1213c5d267eSJoel E. Denny }; 1223c5d267eSJoel E. Denny 123fdde18a7SJoel E. Denny static cl::list<DumpInputValue> DumpInputs( 124fdde18a7SJoel E. Denny "dump-input", 1253c5d267eSJoel E. Denny cl::desc("Dump input to stderr, adding annotations representing\n" 126fdde18a7SJoel E. Denny "currently enabled diagnostics. When there are multiple\n" 127fdde18a7SJoel E. Denny "occurrences of this option, the <value> that appears earliest\n" 128839f8e4fSJoel E. Denny "in the list below has precedence. The default is 'fail'.\n"), 1293c5d267eSJoel E. Denny cl::value_desc("mode"), 130839f8e4fSJoel E. Denny cl::values(clEnumValN(DumpInputHelp, "help", "Explain input dump and quit"), 131fdde18a7SJoel E. Denny clEnumValN(DumpInputAlways, "always", "Always dump input"), 1323c5d267eSJoel E. Denny clEnumValN(DumpInputFail, "fail", "Dump input on failure"), 133fdde18a7SJoel E. Denny clEnumValN(DumpInputNever, "never", "Never dump input"))); 134dc5ba317SJoel E. Denny 1359fd4b5faSJoel E. Denny // The order of DumpInputFilterValue members affects their precedence, as 1369fd4b5faSJoel E. Denny // documented for -dump-input-filter below. 1379fd4b5faSJoel E. Denny enum DumpInputFilterValue { 1389fd4b5faSJoel E. Denny DumpInputFilterError, 1399fd4b5faSJoel E. Denny DumpInputFilterAnnotation, 1409fd4b5faSJoel E. Denny DumpInputFilterAnnotationFull, 1419fd4b5faSJoel E. Denny DumpInputFilterAll 1429fd4b5faSJoel E. Denny }; 1439fd4b5faSJoel E. Denny 1449fd4b5faSJoel E. Denny static cl::list<DumpInputFilterValue> DumpInputFilters( 1459fd4b5faSJoel E. Denny "dump-input-filter", 1469fd4b5faSJoel E. Denny cl::desc("In the dump requested by -dump-input, print only input lines of\n" 1476dda6ff0SJoel E. Denny "kind <value> plus any context specified by -dump-input-context.\n" 1486dda6ff0SJoel E. Denny "When there are multiple occurrences of this option, the <value>\n" 1499fd4b5faSJoel E. Denny "that appears earliest in the list below has precedence. The\n" 1509fd4b5faSJoel E. Denny "default is 'error' when -dump-input=fail, and it's 'all' when\n" 1519fd4b5faSJoel E. Denny "-dump-input=always.\n"), 1529fd4b5faSJoel E. Denny cl::values(clEnumValN(DumpInputFilterAll, "all", "All input lines"), 1539fd4b5faSJoel E. Denny clEnumValN(DumpInputFilterAnnotationFull, "annotation-full", 1549fd4b5faSJoel E. Denny "Input lines with annotations"), 1559fd4b5faSJoel E. Denny clEnumValN(DumpInputFilterAnnotation, "annotation", 1569fd4b5faSJoel E. Denny "Input lines with starting points of annotations"), 1579fd4b5faSJoel E. Denny clEnumValN(DumpInputFilterError, "error", 1589fd4b5faSJoel E. Denny "Input lines with starting points of error " 1599fd4b5faSJoel E. Denny "annotations"))); 1609fd4b5faSJoel E. Denny 161bce8fcedSJoel E. Denny static cl::list<unsigned> DumpInputContexts( 162bce8fcedSJoel E. Denny "dump-input-context", cl::value_desc("N"), 1639fd4b5faSJoel E. Denny cl::desc("In the dump requested by -dump-input, print <N> input lines\n" 1649fd4b5faSJoel E. Denny "before and <N> input lines after any lines specified by\n" 1659fd4b5faSJoel E. Denny "-dump-input-filter. When there are multiple occurrences of\n" 166bce8fcedSJoel E. Denny "this option, the largest specified <N> has precedence. The\n" 167bce8fcedSJoel E. Denny "default is 5.\n")); 168bce8fcedSJoel E. Denny 16913df4626SMatt Arsenault typedef cl::list<std::string>::const_iterator prefix_iterator; 17013df4626SMatt Arsenault 17113df4626SMatt Arsenault 17213df4626SMatt Arsenault 173726774cbSChandler Carruth 174726774cbSChandler Carruth 175726774cbSChandler Carruth 176c2735158SRui Ueyama 1772bd4f8b6SXinliang David Li static void DumpCommandLine(int argc, char **argv) { 1782bd4f8b6SXinliang David Li errs() << "FileCheck command line: "; 1792bd4f8b6SXinliang David Li for (int I = 0; I < argc; I++) 1802bd4f8b6SXinliang David Li errs() << " " << argv[I]; 1812bd4f8b6SXinliang David Li errs() << "\n"; 1822bd4f8b6SXinliang David Li } 1832bd4f8b6SXinliang David Li 1843c5d267eSJoel E. Denny struct MarkerStyle { 1853c5d267eSJoel E. Denny /// The starting char (before tildes) for marking the line. 1863c5d267eSJoel E. Denny char Lead; 1873c5d267eSJoel E. Denny /// What color to use for this annotation. 1884d41c332SRui Ueyama raw_ostream::Colors Color; 1893c5d267eSJoel E. Denny /// A note to follow the marker, or empty string if none. 1903c5d267eSJoel E. Denny std::string Note; 1919fd4b5faSJoel E. Denny /// Does this marker indicate inclusion by -dump-input-filter=error? 192bce8fcedSJoel E. Denny bool FiltersAsError; 1933c5d267eSJoel E. Denny MarkerStyle() {} 1944d41c332SRui Ueyama MarkerStyle(char Lead, raw_ostream::Colors Color, 195bce8fcedSJoel E. Denny const std::string &Note = "", bool FiltersAsError = false) 196bce8fcedSJoel E. Denny : Lead(Lead), Color(Color), Note(Note), FiltersAsError(FiltersAsError) { 197bce8fcedSJoel E. Denny assert((!FiltersAsError || !Note.empty()) && 198bce8fcedSJoel E. Denny "expected error diagnostic to have note"); 199bce8fcedSJoel E. Denny } 2003c5d267eSJoel E. Denny }; 2013c5d267eSJoel E. Denny 2023c5d267eSJoel E. Denny static MarkerStyle GetMarker(FileCheckDiag::MatchType MatchTy) { 2033c5d267eSJoel E. Denny switch (MatchTy) { 204e2afb614SJoel E. Denny case FileCheckDiag::MatchFoundAndExpected: 2057df86967SJoel E. Denny return MarkerStyle('^', raw_ostream::GREEN); 206e2afb614SJoel E. Denny case FileCheckDiag::MatchFoundButExcluded: 207bce8fcedSJoel E. Denny return MarkerStyle('!', raw_ostream::RED, "error: no match expected", 208bce8fcedSJoel E. Denny /*FiltersAsError=*/true); 209e2afb614SJoel E. Denny case FileCheckDiag::MatchFoundButWrongLine: 210bce8fcedSJoel E. Denny return MarkerStyle('!', raw_ostream::RED, "error: match on wrong line", 211bce8fcedSJoel E. Denny /*FiltersAsError=*/true); 212e2afb614SJoel E. Denny case FileCheckDiag::MatchFoundButDiscarded: 213f7c1c4d8SJoel E. Denny return MarkerStyle('!', raw_ostream::CYAN, 214f7c1c4d8SJoel E. Denny "discard: overlaps earlier match"); 21596f0e84cSJoel E. Denny case FileCheckDiag::MatchNoneAndExcluded: 21696f0e84cSJoel E. Denny return MarkerStyle('X', raw_ostream::GREEN); 2173c5d267eSJoel E. Denny case FileCheckDiag::MatchNoneButExpected: 218bce8fcedSJoel E. Denny return MarkerStyle('X', raw_ostream::RED, "error: no match found", 219bce8fcedSJoel E. Denny /*FiltersAsError=*/true); 2202c007c80SJoel E. Denny case FileCheckDiag::MatchFuzzy: 221bce8fcedSJoel E. Denny return MarkerStyle('?', raw_ostream::MAGENTA, "possible intended match", 222bce8fcedSJoel E. Denny /*FiltersAsError=*/true); 2233c5d267eSJoel E. Denny } 2243c5d267eSJoel E. Denny llvm_unreachable_internal("unexpected match type"); 2253c5d267eSJoel E. Denny } 2263c5d267eSJoel E. Denny 2273c5d267eSJoel E. Denny static void DumpInputAnnotationHelp(raw_ostream &OS) { 2283c5d267eSJoel E. Denny OS << "The following description was requested by -dump-input=help to\n" 229839f8e4fSJoel E. Denny << "explain the input dump printed by FileCheck.\n" 230839f8e4fSJoel E. Denny << "\n" 231839f8e4fSJoel E. Denny << "Related command-line options:\n" 2326dda6ff0SJoel E. Denny << "\n" 233839f8e4fSJoel E. Denny << " - -dump-input=<value> enables or disables the input dump\n" 2346dda6ff0SJoel E. Denny << " - -dump-input-filter=<value> filters the input lines\n" 2359fd4b5faSJoel E. Denny << " - -dump-input-context=<N> adjusts the context of filtered lines\n" 236839f8e4fSJoel E. Denny << " - -v and -vv add more annotations\n" 237839f8e4fSJoel E. Denny << " - -color forces colors to be enabled both in the dump and below\n" 238839f8e4fSJoel E. Denny << " - -help documents the above options in more detail\n" 239839f8e4fSJoel E. Denny << "\n" 2406dda6ff0SJoel E. Denny << "These options can also be set via FILECHECK_OPTS. For example, for\n" 2416dda6ff0SJoel E. Denny << "maximum debugging output on failures:\n" 2426dda6ff0SJoel E. Denny << "\n" 2436dda6ff0SJoel E. Denny << " $ FILECHECK_OPTS='-dump-input-filter=all -vv -color' ninja check\n" 2446dda6ff0SJoel E. Denny << "\n" 2456dda6ff0SJoel E. Denny << "Input dump annotation format:\n" 2466dda6ff0SJoel E. Denny << "\n"; 2473c5d267eSJoel E. Denny 2483c5d267eSJoel E. Denny // Labels for input lines. 2493c5d267eSJoel E. Denny OS << " - "; 2503c5d267eSJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "L:"; 251*09c35739SThomas Preud'homme OS << " labels line number L of the input file\n" 252*09c35739SThomas Preud'homme << " An extra space is added after each input line to represent" 253*09c35739SThomas Preud'homme << " the\n" 254*09c35739SThomas Preud'homme << " newline character\n"; 2553c5d267eSJoel E. Denny 2563c5d267eSJoel E. Denny // Labels for annotation lines. 2573c5d267eSJoel E. Denny OS << " - "; 2583c5d267eSJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "T:L"; 259b5a24610SJoel E. Denny OS << " labels the only match result for either (1) a pattern of type T" 260b5a24610SJoel E. Denny << " from\n" 261b5a24610SJoel E. Denny << " line L of the check file if L is an integer or (2) the" 262b5a24610SJoel E. Denny << " I-th implicit\n" 263b5a24610SJoel E. Denny << " pattern if L is \"imp\" followed by an integer " 264b5a24610SJoel E. Denny << "I (index origin one)\n"; 2652c007c80SJoel E. Denny OS << " - "; 2662c007c80SJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "T:L'N"; 267b5a24610SJoel E. Denny OS << " labels the Nth match result for such a pattern\n"; 2683c5d267eSJoel E. Denny 2693c5d267eSJoel E. Denny // Markers on annotation lines. 2703c5d267eSJoel E. Denny OS << " - "; 2717df86967SJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "^~~"; 2727df86967SJoel E. Denny OS << " marks good match (reported if -v)\n" 2737df86967SJoel E. Denny << " - "; 274cadfcef4SJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "!~~"; 275cadfcef4SJoel E. Denny OS << " marks bad match, such as:\n" 276cadfcef4SJoel E. Denny << " - CHECK-NEXT on same line as previous match (error)\n" 2770e7e3fa0SJoel E. Denny << " - CHECK-NOT found (error)\n" 278f7c1c4d8SJoel E. Denny << " - CHECK-DAG overlapping match (discarded, reported if " 279f7c1c4d8SJoel E. Denny << "-vv)\n" 280cadfcef4SJoel E. Denny << " - "; 2813c5d267eSJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "X~~"; 282cadfcef4SJoel E. Denny OS << " marks search range when no match is found, such as:\n" 283cadfcef4SJoel E. Denny << " - CHECK-NEXT not found (error)\n" 28496f0e84cSJoel E. Denny << " - CHECK-NOT not found (success, reported if -vv)\n" 285f7c1c4d8SJoel E. Denny << " - CHECK-DAG not found after discarded matches (error)\n" 2862c007c80SJoel E. Denny << " - "; 2872c007c80SJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "?"; 2882c007c80SJoel E. Denny OS << " marks fuzzy match when no match is found\n"; 2893c5d267eSJoel E. Denny 290bce8fcedSJoel E. Denny // Elided lines. 291bce8fcedSJoel E. Denny OS << " - "; 292bce8fcedSJoel E. Denny WithColor(OS, raw_ostream::SAVEDCOLOR, true) << "..."; 293bce8fcedSJoel E. Denny OS << " indicates elided input lines and annotations, as specified by\n" 2949fd4b5faSJoel E. Denny << " -dump-input-filter and -dump-input-context\n"; 295bce8fcedSJoel E. Denny 2963c5d267eSJoel E. Denny // Colors. 2973c5d267eSJoel E. Denny OS << " - colors "; 2987df86967SJoel E. Denny WithColor(OS, raw_ostream::GREEN, true) << "success"; 2997df86967SJoel E. Denny OS << ", "; 3003c5d267eSJoel E. Denny WithColor(OS, raw_ostream::RED, true) << "error"; 3012c007c80SJoel E. Denny OS << ", "; 3022c007c80SJoel E. Denny WithColor(OS, raw_ostream::MAGENTA, true) << "fuzzy match"; 3037df86967SJoel E. Denny OS << ", "; 304f7c1c4d8SJoel E. Denny WithColor(OS, raw_ostream::CYAN, true, false) << "discarded match"; 305f7c1c4d8SJoel E. Denny OS << ", "; 3067df86967SJoel E. Denny WithColor(OS, raw_ostream::CYAN, true, true) << "unmatched input"; 307839f8e4fSJoel E. Denny OS << "\n"; 3083c5d267eSJoel E. Denny } 3093c5d267eSJoel E. Denny 3103c5d267eSJoel E. Denny /// An annotation for a single input line. 3113c5d267eSJoel E. Denny struct InputAnnotation { 312ce685455SJoel E. Denny /// The index of the match result across all checks 313ce685455SJoel E. Denny unsigned DiagIndex; 3143c5d267eSJoel E. Denny /// The label for this annotation. 3153c5d267eSJoel E. Denny std::string Label; 316bce8fcedSJoel E. Denny /// Is this the initial fragment of a diagnostic that has been broken across 317bce8fcedSJoel E. Denny /// multiple lines? 318bce8fcedSJoel E. Denny bool IsFirstLine; 3193c5d267eSJoel E. Denny /// What input line (one-origin indexing) this annotation marks. This might 320bce8fcedSJoel E. Denny /// be different from the starting line of the original diagnostic if 321bce8fcedSJoel E. Denny /// !IsFirstLine. 3223c5d267eSJoel E. Denny unsigned InputLine; 323ce685455SJoel E. Denny /// The column range (one-origin indexing, open end) in which to mark the 3243c5d267eSJoel E. Denny /// input line. If InputEndCol is UINT_MAX, treat it as the last column 3253c5d267eSJoel E. Denny /// before the newline. 3263c5d267eSJoel E. Denny unsigned InputStartCol, InputEndCol; 3273c5d267eSJoel E. Denny /// The marker to use. 3283c5d267eSJoel E. Denny MarkerStyle Marker; 329e2afb614SJoel E. Denny /// Whether this annotation represents a good match for an expected pattern. 330e2afb614SJoel E. Denny bool FoundAndExpectedMatch; 3313c5d267eSJoel E. Denny }; 3323c5d267eSJoel E. Denny 3333c5d267eSJoel E. Denny /// Get an abbreviation for the check type. 33420e9c36cSFangrui Song static std::string GetCheckTypeAbbreviation(Check::FileCheckType Ty) { 3353c5d267eSJoel E. Denny switch (Ty) { 3363c5d267eSJoel E. Denny case Check::CheckPlain: 3373c5d267eSJoel E. Denny if (Ty.getCount() > 1) 3383c5d267eSJoel E. Denny return "count"; 3393c5d267eSJoel E. Denny return "check"; 3403c5d267eSJoel E. Denny case Check::CheckNext: 3413c5d267eSJoel E. Denny return "next"; 3423c5d267eSJoel E. Denny case Check::CheckSame: 3433c5d267eSJoel E. Denny return "same"; 3443c5d267eSJoel E. Denny case Check::CheckNot: 3453c5d267eSJoel E. Denny return "not"; 3463c5d267eSJoel E. Denny case Check::CheckDAG: 3473c5d267eSJoel E. Denny return "dag"; 3483c5d267eSJoel E. Denny case Check::CheckLabel: 3493c5d267eSJoel E. Denny return "label"; 3503c5d267eSJoel E. Denny case Check::CheckEmpty: 3513c5d267eSJoel E. Denny return "empty"; 352a1fd1882SJoel E. Denny case Check::CheckComment: 353a1fd1882SJoel E. Denny return "com"; 3543c5d267eSJoel E. Denny case Check::CheckEOF: 3553c5d267eSJoel E. Denny return "eof"; 3563c5d267eSJoel E. Denny case Check::CheckBadNot: 3573c5d267eSJoel E. Denny return "bad-not"; 3583c5d267eSJoel E. Denny case Check::CheckBadCount: 3593c5d267eSJoel E. Denny return "bad-count"; 3603c5d267eSJoel E. Denny case Check::CheckNone: 3613c5d267eSJoel E. Denny llvm_unreachable("invalid FileCheckType"); 3623c5d267eSJoel E. Denny } 3633c5d267eSJoel E. Denny llvm_unreachable("unknown FileCheckType"); 3643c5d267eSJoel E. Denny } 3653c5d267eSJoel E. Denny 366b5a24610SJoel E. Denny static void 367b5a24610SJoel E. Denny BuildInputAnnotations(const SourceMgr &SM, unsigned CheckFileBufferID, 368b5a24610SJoel E. Denny const std::pair<unsigned, unsigned> &ImpPatBufferIDRange, 369b5a24610SJoel E. Denny const std::vector<FileCheckDiag> &Diags, 3703c5d267eSJoel E. Denny std::vector<InputAnnotation> &Annotations, 3713c5d267eSJoel E. Denny unsigned &LabelWidth) { 372ce685455SJoel E. Denny // How many diagnostics have we seen so far? 373ce685455SJoel E. Denny unsigned DiagCount = 0; 3742c007c80SJoel E. Denny // How many diagnostics has the current check seen so far? 3752c007c80SJoel E. Denny unsigned CheckDiagCount = 0; 3763c5d267eSJoel E. Denny // What's the widest label? 3773c5d267eSJoel E. Denny LabelWidth = 0; 3783c5d267eSJoel E. Denny for (auto DiagItr = Diags.begin(), DiagEnd = Diags.end(); DiagItr != DiagEnd; 3793c5d267eSJoel E. Denny ++DiagItr) { 3803c5d267eSJoel E. Denny InputAnnotation A; 381ce685455SJoel E. Denny A.DiagIndex = DiagCount++; 3823c5d267eSJoel E. Denny 3833c5d267eSJoel E. Denny // Build label, which uniquely identifies this check result. 384b5a24610SJoel E. Denny unsigned CheckBufferID = SM.FindBufferContainingLoc(DiagItr->CheckLoc); 385b5a24610SJoel E. Denny auto CheckLineAndCol = 386b5a24610SJoel E. Denny SM.getLineAndColumn(DiagItr->CheckLoc, CheckBufferID); 3873c5d267eSJoel E. Denny llvm::raw_string_ostream Label(A.Label); 388b5a24610SJoel E. Denny Label << GetCheckTypeAbbreviation(DiagItr->CheckTy) << ":"; 389b5a24610SJoel E. Denny if (CheckBufferID == CheckFileBufferID) 390b5a24610SJoel E. Denny Label << CheckLineAndCol.first; 391b5a24610SJoel E. Denny else if (ImpPatBufferIDRange.first <= CheckBufferID && 392b5a24610SJoel E. Denny CheckBufferID < ImpPatBufferIDRange.second) 393b5a24610SJoel E. Denny Label << "imp" << (CheckBufferID - ImpPatBufferIDRange.first + 1); 394b5a24610SJoel E. Denny else 395b5a24610SJoel E. Denny llvm_unreachable("expected diagnostic's check location to be either in " 396b5a24610SJoel E. Denny "the check file or for an implicit pattern"); 397ce685455SJoel E. Denny unsigned CheckDiagIndex = UINT_MAX; 3982c007c80SJoel E. Denny auto DiagNext = std::next(DiagItr); 3992c007c80SJoel E. Denny if (DiagNext != DiagEnd && DiagItr->CheckTy == DiagNext->CheckTy && 400b5a24610SJoel E. Denny DiagItr->CheckLoc == DiagNext->CheckLoc) 401ce685455SJoel E. Denny CheckDiagIndex = CheckDiagCount++; 4022c007c80SJoel E. Denny else if (CheckDiagCount) { 403ce685455SJoel E. Denny CheckDiagIndex = CheckDiagCount; 4042c007c80SJoel E. Denny CheckDiagCount = 0; 4052c007c80SJoel E. Denny } 406ce685455SJoel E. Denny if (CheckDiagIndex != UINT_MAX) 407ce685455SJoel E. Denny Label << "'" << CheckDiagIndex; 4083c5d267eSJoel E. Denny Label.flush(); 4093c5d267eSJoel E. Denny LabelWidth = std::max((std::string::size_type)LabelWidth, A.Label.size()); 4103c5d267eSJoel E. Denny 411608f2bfdSJoel E. Denny A.Marker = GetMarker(DiagItr->MatchTy); 412d680711bSJoel E. Denny if (!DiagItr->Note.empty()) { 413d680711bSJoel E. Denny A.Marker.Note = DiagItr->Note; 414d680711bSJoel E. Denny // It's less confusing if notes that don't actually have ranges don't have 415d680711bSJoel E. Denny // markers. For example, a marker for 'with "VAR" equal to "5"' would 416d680711bSJoel E. Denny // seem to indicate where "VAR" matches, but the location we actually have 417d680711bSJoel E. Denny // for the marker simply points to the start of the match/search range for 418d680711bSJoel E. Denny // the full pattern of which the substitution is potentially just one 419d680711bSJoel E. Denny // component. 420d680711bSJoel E. Denny if (DiagItr->InputStartLine == DiagItr->InputEndLine && 421d680711bSJoel E. Denny DiagItr->InputStartCol == DiagItr->InputEndCol) 422d680711bSJoel E. Denny A.Marker.Lead = ' '; 423d680711bSJoel E. Denny } 424e2afb614SJoel E. Denny A.FoundAndExpectedMatch = 425e2afb614SJoel E. Denny DiagItr->MatchTy == FileCheckDiag::MatchFoundAndExpected; 4263c5d267eSJoel E. Denny 4273c5d267eSJoel E. Denny // Compute the mark location, and break annotation into multiple 4283c5d267eSJoel E. Denny // annotations if it spans multiple lines. 429bce8fcedSJoel E. Denny A.IsFirstLine = true; 4303c5d267eSJoel E. Denny A.InputLine = DiagItr->InputStartLine; 4313c5d267eSJoel E. Denny A.InputStartCol = DiagItr->InputStartCol; 4323c5d267eSJoel E. Denny if (DiagItr->InputStartLine == DiagItr->InputEndLine) { 4333c5d267eSJoel E. Denny // Sometimes ranges are empty in order to indicate a specific point, but 4343c5d267eSJoel E. Denny // that would mean nothing would be marked, so adjust the range to 4353c5d267eSJoel E. Denny // include the following character. 4363c5d267eSJoel E. Denny A.InputEndCol = 4373c5d267eSJoel E. Denny std::max(DiagItr->InputStartCol + 1, DiagItr->InputEndCol); 4383c5d267eSJoel E. Denny Annotations.push_back(A); 4393c5d267eSJoel E. Denny } else { 4403c5d267eSJoel E. Denny assert(DiagItr->InputStartLine < DiagItr->InputEndLine && 4413c5d267eSJoel E. Denny "expected input range not to be inverted"); 4423c5d267eSJoel E. Denny A.InputEndCol = UINT_MAX; 4433c5d267eSJoel E. Denny Annotations.push_back(A); 4443c5d267eSJoel E. Denny for (unsigned L = DiagItr->InputStartLine + 1, E = DiagItr->InputEndLine; 4453c5d267eSJoel E. Denny L <= E; ++L) { 4463c5d267eSJoel E. Denny // If a range ends before the first column on a line, then it has no 4473c5d267eSJoel E. Denny // characters on that line, so there's nothing to render. 448608f2bfdSJoel E. Denny if (DiagItr->InputEndCol == 1 && L == E) 4493c5d267eSJoel E. Denny break; 4503c5d267eSJoel E. Denny InputAnnotation B; 451ce685455SJoel E. Denny B.DiagIndex = A.DiagIndex; 4523c5d267eSJoel E. Denny B.Label = A.Label; 453bce8fcedSJoel E. Denny B.IsFirstLine = false; 4543c5d267eSJoel E. Denny B.InputLine = L; 455608f2bfdSJoel E. Denny B.Marker = A.Marker; 4563c5d267eSJoel E. Denny B.Marker.Lead = '~'; 4573c5d267eSJoel E. Denny B.Marker.Note = ""; 458608f2bfdSJoel E. Denny B.InputStartCol = 1; 459608f2bfdSJoel E. Denny if (L != E) 460608f2bfdSJoel E. Denny B.InputEndCol = UINT_MAX; 461608f2bfdSJoel E. Denny else 4623c5d267eSJoel E. Denny B.InputEndCol = DiagItr->InputEndCol; 463e2afb614SJoel E. Denny B.FoundAndExpectedMatch = A.FoundAndExpectedMatch; 4643c5d267eSJoel E. Denny Annotations.push_back(B); 4653c5d267eSJoel E. Denny } 4663c5d267eSJoel E. Denny } 4673c5d267eSJoel E. Denny } 4683c5d267eSJoel E. Denny } 4693c5d267eSJoel E. Denny 470bce8fcedSJoel E. Denny static unsigned FindInputLineInFilter( 4719fd4b5faSJoel E. Denny DumpInputFilterValue DumpInputFilter, unsigned CurInputLine, 472bce8fcedSJoel E. Denny const std::vector<InputAnnotation>::iterator &AnnotationBeg, 473bce8fcedSJoel E. Denny const std::vector<InputAnnotation>::iterator &AnnotationEnd) { 4749fd4b5faSJoel E. Denny if (DumpInputFilter == DumpInputFilterAll) 475bce8fcedSJoel E. Denny return CurInputLine; 476bce8fcedSJoel E. Denny for (auto AnnotationItr = AnnotationBeg; AnnotationItr != AnnotationEnd; 477bce8fcedSJoel E. Denny ++AnnotationItr) { 4789fd4b5faSJoel E. Denny switch (DumpInputFilter) { 4799fd4b5faSJoel E. Denny case DumpInputFilterAll: 4809fd4b5faSJoel E. Denny llvm_unreachable("unexpected DumpInputFilterAll"); 4819fd4b5faSJoel E. Denny break; 4829fd4b5faSJoel E. Denny case DumpInputFilterAnnotationFull: 4839fd4b5faSJoel E. Denny return AnnotationItr->InputLine; 4849fd4b5faSJoel E. Denny case DumpInputFilterAnnotation: 4859fd4b5faSJoel E. Denny if (AnnotationItr->IsFirstLine) 4869fd4b5faSJoel E. Denny return AnnotationItr->InputLine; 4879fd4b5faSJoel E. Denny break; 4889fd4b5faSJoel E. Denny case DumpInputFilterError: 489bce8fcedSJoel E. Denny if (AnnotationItr->IsFirstLine && AnnotationItr->Marker.FiltersAsError) 490bce8fcedSJoel E. Denny return AnnotationItr->InputLine; 4919fd4b5faSJoel E. Denny break; 4929fd4b5faSJoel E. Denny } 493bce8fcedSJoel E. Denny } 494bce8fcedSJoel E. Denny return UINT_MAX; 495bce8fcedSJoel E. Denny } 496bce8fcedSJoel E. Denny 49777b6ddf1SJoel E. Denny /// To OS, print a vertical ellipsis (right-justified at LabelWidth) if it would 49877b6ddf1SJoel E. Denny /// occupy less lines than ElidedLines, but print ElidedLines otherwise. Either 49977b6ddf1SJoel E. Denny /// way, clear ElidedLines. Thus, if ElidedLines is empty, do nothing. 50077b6ddf1SJoel E. Denny static void DumpEllipsisOrElidedLines(raw_ostream &OS, std::string &ElidedLines, 50177b6ddf1SJoel E. Denny unsigned LabelWidth) { 50277b6ddf1SJoel E. Denny if (ElidedLines.empty()) 50377b6ddf1SJoel E. Denny return; 50477b6ddf1SJoel E. Denny unsigned EllipsisLines = 3; 50577b6ddf1SJoel E. Denny if (EllipsisLines < StringRef(ElidedLines).count('\n')) { 50677b6ddf1SJoel E. Denny for (unsigned i = 0; i < EllipsisLines; ++i) { 50777b6ddf1SJoel E. Denny WithColor(OS, raw_ostream::BLACK, /*Bold=*/true) 50877b6ddf1SJoel E. Denny << right_justify(".", LabelWidth); 50977b6ddf1SJoel E. Denny OS << '\n'; 51077b6ddf1SJoel E. Denny } 51177b6ddf1SJoel E. Denny } else 51277b6ddf1SJoel E. Denny OS << ElidedLines; 51377b6ddf1SJoel E. Denny ElidedLines.clear(); 51477b6ddf1SJoel E. Denny } 51577b6ddf1SJoel E. Denny 5167df86967SJoel E. Denny static void DumpAnnotatedInput(raw_ostream &OS, const FileCheckRequest &Req, 5179fd4b5faSJoel E. Denny DumpInputFilterValue DumpInputFilter, 518bce8fcedSJoel E. Denny unsigned DumpInputContext, 5197df86967SJoel E. Denny StringRef InputFileText, 5207df86967SJoel E. Denny std::vector<InputAnnotation> &Annotations, 5217df86967SJoel E. Denny unsigned LabelWidth) { 522bce8fcedSJoel E. Denny OS << "Input was:\n<<<<<<\n"; 5233c5d267eSJoel E. Denny 5243c5d267eSJoel E. Denny // Sort annotations. 525a396e2e0SKazu Hirata llvm::sort(Annotations, 5263c5d267eSJoel E. Denny [](const InputAnnotation &A, const InputAnnotation &B) { 527ce685455SJoel E. Denny // 1. Sort annotations in the order of the input lines. 528ce685455SJoel E. Denny // 529ce685455SJoel E. Denny // This makes it easier to find relevant annotations while 530ce685455SJoel E. Denny // iterating input lines in the implementation below. FileCheck 531ce685455SJoel E. Denny // does not always produce diagnostics in the order of input 532ce685455SJoel E. Denny // lines due to, for example, CHECK-DAG and CHECK-NOT. 5333c5d267eSJoel E. Denny if (A.InputLine != B.InputLine) 5343c5d267eSJoel E. Denny return A.InputLine < B.InputLine; 535ce685455SJoel E. Denny // 2. Sort annotations in the temporal order FileCheck produced 536ce685455SJoel E. Denny // their associated diagnostics. 537ce685455SJoel E. Denny // 538ce685455SJoel E. Denny // This sort offers several benefits: 539ce685455SJoel E. Denny // 540ce685455SJoel E. Denny // A. On a single input line, the order of annotations reflects 541ce685455SJoel E. Denny // the FileCheck logic for processing directives/patterns. 542ce685455SJoel E. Denny // This can be helpful in understanding cases in which the 543ce685455SJoel E. Denny // order of the associated directives/patterns in the check 544ce685455SJoel E. Denny // file or on the command line either (i) does not match the 545ce685455SJoel E. Denny // temporal order in which FileCheck looks for matches for the 546ce685455SJoel E. Denny // directives/patterns (due to, for example, CHECK-LABEL, 547ce685455SJoel E. Denny // CHECK-NOT, or `--implicit-check-not`) or (ii) does match 548ce685455SJoel E. Denny // that order but does not match the order of those 549ce685455SJoel E. Denny // diagnostics along an input line (due to, for example, 550ce685455SJoel E. Denny // CHECK-DAG). 551ce685455SJoel E. Denny // 552ce685455SJoel E. Denny // On the other hand, because our presentation format presents 553ce685455SJoel E. Denny // input lines in order, there's no clear way to offer the 554ce685455SJoel E. Denny // same benefit across input lines. For consistency, it might 555ce685455SJoel E. Denny // then seem worthwhile to have annotations on a single line 556ce685455SJoel E. Denny // also sorted in input order (that is, by input column). 557ce685455SJoel E. Denny // However, in practice, this appears to be more confusing 558ce685455SJoel E. Denny // than helpful. Perhaps it's intuitive to expect annotations 559ce685455SJoel E. Denny // to be listed in the temporal order in which they were 560ce685455SJoel E. Denny // produced except in cases the presentation format obviously 561ce685455SJoel E. Denny // and inherently cannot support it (that is, across input 562ce685455SJoel E. Denny // lines). 563ce685455SJoel E. Denny // 564ce685455SJoel E. Denny // B. When diagnostics' annotations are split among multiple 565ce685455SJoel E. Denny // input lines, the user must track them from one input line 566ce685455SJoel E. Denny // to the next. One property of the sort chosen here is that 567ce685455SJoel E. Denny // it facilitates the user in this regard by ensuring the 568ce685455SJoel E. Denny // following: when comparing any two input lines, a 569ce685455SJoel E. Denny // diagnostic's annotations are sorted in the same position 570ce685455SJoel E. Denny // relative to all other diagnostics' annotations. 571ce685455SJoel E. Denny return A.DiagIndex < B.DiagIndex; 5723c5d267eSJoel E. Denny }); 5733c5d267eSJoel E. Denny 5743c5d267eSJoel E. Denny // Compute the width of the label column. 5753c5d267eSJoel E. Denny const unsigned char *InputFilePtr = InputFileText.bytes_begin(), 5763c5d267eSJoel E. Denny *InputFileEnd = InputFileText.bytes_end(); 5773c5d267eSJoel E. Denny unsigned LineCount = InputFileText.count('\n'); 5783c5d267eSJoel E. Denny if (InputFileEnd[-1] != '\n') 5793c5d267eSJoel E. Denny ++LineCount; 580010982f7SRainer Orth unsigned LineNoWidth = std::log10(LineCount) + 1; 5813c5d267eSJoel E. Denny // +3 below adds spaces (1) to the left of the (right-aligned) line numbers 5823c5d267eSJoel E. Denny // on input lines and (2) to the right of the (left-aligned) labels on 5833c5d267eSJoel E. Denny // annotation lines so that input lines and annotation lines are more 5843c5d267eSJoel E. Denny // visually distinct. For example, the spaces on the annotation lines ensure 5853c5d267eSJoel E. Denny // that input line numbers and check directive line numbers never align 5863c5d267eSJoel E. Denny // horizontally. Those line numbers might not even be for the same file. 5873c5d267eSJoel E. Denny // One space would be enough to achieve that, but more makes it even easier 5883c5d267eSJoel E. Denny // to see. 5893c5d267eSJoel E. Denny LabelWidth = std::max(LabelWidth, LineNoWidth) + 3; 5903c5d267eSJoel E. Denny 5913c5d267eSJoel E. Denny // Print annotated input lines. 592bce8fcedSJoel E. Denny unsigned PrevLineInFilter = 0; // 0 means none so far 593bce8fcedSJoel E. Denny unsigned NextLineInFilter = 0; // 0 means uncomputed, UINT_MAX means none 59477b6ddf1SJoel E. Denny std::string ElidedLines; 59577b6ddf1SJoel E. Denny raw_string_ostream ElidedLinesOS(ElidedLines); 59677b6ddf1SJoel E. Denny ColorMode TheColorMode = 59777b6ddf1SJoel E. Denny WithColor(OS).colorsEnabled() ? ColorMode::Enable : ColorMode::Disable; 59877b6ddf1SJoel E. Denny if (TheColorMode == ColorMode::Enable) 59977b6ddf1SJoel E. Denny ElidedLinesOS.enable_colors(true); 6003c5d267eSJoel E. Denny auto AnnotationItr = Annotations.begin(), AnnotationEnd = Annotations.end(); 6013c5d267eSJoel E. Denny for (unsigned Line = 1; 6023c5d267eSJoel E. Denny InputFilePtr != InputFileEnd || AnnotationItr != AnnotationEnd; 6033c5d267eSJoel E. Denny ++Line) { 6043c5d267eSJoel E. Denny const unsigned char *InputFileLine = InputFilePtr; 6053c5d267eSJoel E. Denny 606bce8fcedSJoel E. Denny // Compute the previous and next line included by the filter. 607bce8fcedSJoel E. Denny if (NextLineInFilter < Line) 6089fd4b5faSJoel E. Denny NextLineInFilter = FindInputLineInFilter(DumpInputFilter, Line, 609bce8fcedSJoel E. Denny AnnotationItr, AnnotationEnd); 610bce8fcedSJoel E. Denny assert(NextLineInFilter && "expected NextLineInFilter to be computed"); 611bce8fcedSJoel E. Denny if (NextLineInFilter == Line) 612bce8fcedSJoel E. Denny PrevLineInFilter = Line; 613bce8fcedSJoel E. Denny 614bce8fcedSJoel E. Denny // Elide this input line and its annotations if it's not within the 615bce8fcedSJoel E. Denny // context specified by -dump-input-context of an input line included by 6169fd4b5faSJoel E. Denny // -dump-input-filter. However, in case the resulting ellipsis would occupy 61777b6ddf1SJoel E. Denny // more lines than the input lines and annotations it elides, buffer the 61877b6ddf1SJoel E. Denny // elided lines and annotations so we can print them instead. 61977b6ddf1SJoel E. Denny raw_ostream *LineOS = &OS; 620bce8fcedSJoel E. Denny if ((!PrevLineInFilter || PrevLineInFilter + DumpInputContext < Line) && 621bce8fcedSJoel E. Denny (NextLineInFilter == UINT_MAX || 62277b6ddf1SJoel E. Denny Line + DumpInputContext < NextLineInFilter)) 62377b6ddf1SJoel E. Denny LineOS = &ElidedLinesOS; 62477b6ddf1SJoel E. Denny else { 62577b6ddf1SJoel E. Denny LineOS = &OS; 62677b6ddf1SJoel E. Denny DumpEllipsisOrElidedLines(OS, ElidedLinesOS.str(), LabelWidth); 627bce8fcedSJoel E. Denny } 628bce8fcedSJoel E. Denny 6293c5d267eSJoel E. Denny // Print right-aligned line number. 63077b6ddf1SJoel E. Denny WithColor(*LineOS, raw_ostream::BLACK, /*Bold=*/true, /*BF=*/false, 63177b6ddf1SJoel E. Denny TheColorMode) 6323c5d267eSJoel E. Denny << format_decimal(Line, LabelWidth) << ": "; 6333c5d267eSJoel E. Denny 634e2afb614SJoel E. Denny // For the case where -v and colors are enabled, find the annotations for 635e2afb614SJoel E. Denny // good matches for expected patterns in order to highlight everything 636e2afb614SJoel E. Denny // else in the line. There are no such annotations if -v is disabled. 637e2afb614SJoel E. Denny std::vector<InputAnnotation> FoundAndExpectedMatches; 63877b6ddf1SJoel E. Denny if (Req.Verbose && TheColorMode == ColorMode::Enable) { 6397df86967SJoel E. Denny for (auto I = AnnotationItr; I != AnnotationEnd && I->InputLine == Line; 6407df86967SJoel E. Denny ++I) { 641e2afb614SJoel E. Denny if (I->FoundAndExpectedMatch) 642e2afb614SJoel E. Denny FoundAndExpectedMatches.push_back(*I); 6437df86967SJoel E. Denny } 6447df86967SJoel E. Denny } 6457df86967SJoel E. Denny 6467df86967SJoel E. Denny // Print numbered line with highlighting where there are no matches for 6477df86967SJoel E. Denny // expected patterns. 6483c5d267eSJoel E. Denny bool Newline = false; 6497df86967SJoel E. Denny { 65077b6ddf1SJoel E. Denny WithColor COS(*LineOS, raw_ostream::SAVEDCOLOR, /*Bold=*/false, 65177b6ddf1SJoel E. Denny /*BG=*/false, TheColorMode); 6527df86967SJoel E. Denny bool InMatch = false; 6537df86967SJoel E. Denny if (Req.Verbose) 6547df86967SJoel E. Denny COS.changeColor(raw_ostream::CYAN, true, true); 6557df86967SJoel E. Denny for (unsigned Col = 1; InputFilePtr != InputFileEnd && !Newline; ++Col) { 6567df86967SJoel E. Denny bool WasInMatch = InMatch; 6577df86967SJoel E. Denny InMatch = false; 658e2afb614SJoel E. Denny for (auto M : FoundAndExpectedMatches) { 6597df86967SJoel E. Denny if (M.InputStartCol <= Col && Col < M.InputEndCol) { 6607df86967SJoel E. Denny InMatch = true; 6617df86967SJoel E. Denny break; 6627df86967SJoel E. Denny } 6637df86967SJoel E. Denny } 6647df86967SJoel E. Denny if (!WasInMatch && InMatch) 6657df86967SJoel E. Denny COS.resetColor(); 6667df86967SJoel E. Denny else if (WasInMatch && !InMatch) 6677df86967SJoel E. Denny COS.changeColor(raw_ostream::CYAN, true, true); 668*09c35739SThomas Preud'homme if (*InputFilePtr == '\n') { 6693c5d267eSJoel E. Denny Newline = true; 670*09c35739SThomas Preud'homme COS << ' '; 671*09c35739SThomas Preud'homme } else 6727df86967SJoel E. Denny COS << *InputFilePtr; 6733c5d267eSJoel E. Denny ++InputFilePtr; 6743c5d267eSJoel E. Denny } 6757df86967SJoel E. Denny } 67677b6ddf1SJoel E. Denny *LineOS << '\n'; 677*09c35739SThomas Preud'homme unsigned InputLineWidth = InputFilePtr - InputFileLine; 6783c5d267eSJoel E. Denny 6793c5d267eSJoel E. Denny // Print any annotations. 6803c5d267eSJoel E. Denny while (AnnotationItr != AnnotationEnd && 6813c5d267eSJoel E. Denny AnnotationItr->InputLine == Line) { 68277b6ddf1SJoel E. Denny WithColor COS(*LineOS, AnnotationItr->Marker.Color, /*Bold=*/true, 68377b6ddf1SJoel E. Denny /*BG=*/false, TheColorMode); 6843c5d267eSJoel E. Denny // The two spaces below are where the ": " appears on input lines. 6853c5d267eSJoel E. Denny COS << left_justify(AnnotationItr->Label, LabelWidth) << " "; 6863c5d267eSJoel E. Denny unsigned Col; 6873c5d267eSJoel E. Denny for (Col = 1; Col < AnnotationItr->InputStartCol; ++Col) 6883c5d267eSJoel E. Denny COS << ' '; 6893c5d267eSJoel E. Denny COS << AnnotationItr->Marker.Lead; 6903c5d267eSJoel E. Denny // If InputEndCol=UINT_MAX, stop at InputLineWidth. 6913c5d267eSJoel E. Denny for (++Col; Col < AnnotationItr->InputEndCol && Col <= InputLineWidth; 6923c5d267eSJoel E. Denny ++Col) 6933c5d267eSJoel E. Denny COS << '~'; 6943c5d267eSJoel E. Denny const std::string &Note = AnnotationItr->Marker.Note; 6953c5d267eSJoel E. Denny if (!Note.empty()) { 6963c5d267eSJoel E. Denny // Put the note at the end of the input line. If we were to instead 6973c5d267eSJoel E. Denny // put the note right after the marker, subsequent annotations for the 6983c5d267eSJoel E. Denny // same input line might appear to mark this note instead of the input 6993c5d267eSJoel E. Denny // line. 7003c5d267eSJoel E. Denny for (; Col <= InputLineWidth; ++Col) 7013c5d267eSJoel E. Denny COS << ' '; 7023c5d267eSJoel E. Denny COS << ' ' << Note; 7033c5d267eSJoel E. Denny } 7043c5d267eSJoel E. Denny COS << '\n'; 7053c5d267eSJoel E. Denny ++AnnotationItr; 7063c5d267eSJoel E. Denny } 7073c5d267eSJoel E. Denny } 70877b6ddf1SJoel E. Denny DumpEllipsisOrElidedLines(OS, ElidedLinesOS.str(), LabelWidth); 7093c5d267eSJoel E. Denny 7103c5d267eSJoel E. Denny OS << ">>>>>>\n"; 7113c5d267eSJoel E. Denny } 7123c5d267eSJoel E. Denny 713ee3c74fbSChris Lattner int main(int argc, char **argv) { 7143e66509fSJoel E. Denny // Enable use of ANSI color codes because FileCheck is using them to 7153e66509fSJoel E. Denny // highlight text. 7163e66509fSJoel E. Denny llvm::sys::Process::UseANSIEscapeCodes(true); 7173e66509fSJoel E. Denny 718197194b6SRui Ueyama InitLLVM X(argc, argv); 71924994d77SJoel E. Denny cl::ParseCommandLineOptions(argc, argv, /*Overview*/ "", /*Errs*/ nullptr, 72024994d77SJoel E. Denny "FILECHECK_OPTS"); 721bce8fcedSJoel E. Denny 722bce8fcedSJoel E. Denny // Select -dump-input* values. The -help documentation specifies the default 723bce8fcedSJoel E. Denny // value and which value to choose if an option is specified multiple times. 724bce8fcedSJoel E. Denny // In the latter case, the general rule of thumb is to choose the value that 725bce8fcedSJoel E. Denny // provides the most information. 726fdde18a7SJoel E. Denny DumpInputValue DumpInput = 727fdde18a7SJoel E. Denny DumpInputs.empty() 7283b83501cSJoel E. Denny ? DumpInputFail 729fdde18a7SJoel E. Denny : *std::max_element(DumpInputs.begin(), DumpInputs.end()); 7309fd4b5faSJoel E. Denny DumpInputFilterValue DumpInputFilter; 7319fd4b5faSJoel E. Denny if (DumpInputFilters.empty()) 7329fd4b5faSJoel E. Denny DumpInputFilter = DumpInput == DumpInputAlways ? DumpInputFilterAll 7339fd4b5faSJoel E. Denny : DumpInputFilterError; 7349fd4b5faSJoel E. Denny else 7359fd4b5faSJoel E. Denny DumpInputFilter = 7369fd4b5faSJoel E. Denny *std::max_element(DumpInputFilters.begin(), DumpInputFilters.end()); 737bce8fcedSJoel E. Denny unsigned DumpInputContext = DumpInputContexts.empty() 738bce8fcedSJoel E. Denny ? 5 739bce8fcedSJoel E. Denny : *std::max_element(DumpInputContexts.begin(), 740bce8fcedSJoel E. Denny DumpInputContexts.end()); 741bce8fcedSJoel E. Denny 7423c5d267eSJoel E. Denny if (DumpInput == DumpInputHelp) { 7433c5d267eSJoel E. Denny DumpInputAnnotationHelp(outs()); 7443c5d267eSJoel E. Denny return 0; 7453c5d267eSJoel E. Denny } 7463c5d267eSJoel E. Denny if (CheckFilename.empty()) { 7473c5d267eSJoel E. Denny errs() << "<check-file> not specified\n"; 7483c5d267eSJoel E. Denny return 2; 7493c5d267eSJoel E. Denny } 750ee3c74fbSChris Lattner 751ffa9d2e4SAditya Nandakumar FileCheckRequest Req; 7527728cc00SKazu Hirata append_range(Req.CheckPrefixes, CheckPrefixes); 753ffa9d2e4SAditya Nandakumar 7547728cc00SKazu Hirata append_range(Req.CommentPrefixes, CommentPrefixes); 755a1fd1882SJoel E. Denny 7567728cc00SKazu Hirata append_range(Req.ImplicitCheckNot, ImplicitCheckNot); 757ffa9d2e4SAditya Nandakumar 758a5e233bfSThomas Preud'homme bool GlobalDefineError = false; 75976e0ab23SGeorgii Rymar for (StringRef G : GlobalDefines) { 760a5e233bfSThomas Preud'homme size_t EqIdx = G.find('='); 761a5e233bfSThomas Preud'homme if (EqIdx == std::string::npos) { 762a5e233bfSThomas Preud'homme errs() << "Missing equal sign in command-line definition '-D" << G 763a5e233bfSThomas Preud'homme << "'\n"; 764a5e233bfSThomas Preud'homme GlobalDefineError = true; 765a5e233bfSThomas Preud'homme continue; 766a5e233bfSThomas Preud'homme } 767a5e233bfSThomas Preud'homme if (EqIdx == 0) { 7681a944d27SThomas Preud'homme errs() << "Missing variable name in command-line definition '-D" << G 7691a944d27SThomas Preud'homme << "'\n"; 770a5e233bfSThomas Preud'homme GlobalDefineError = true; 771a5e233bfSThomas Preud'homme continue; 772a5e233bfSThomas Preud'homme } 773ffa9d2e4SAditya Nandakumar Req.GlobalDefines.push_back(G); 774a5e233bfSThomas Preud'homme } 775a5e233bfSThomas Preud'homme if (GlobalDefineError) 776a5e233bfSThomas Preud'homme return 2; 777ffa9d2e4SAditya Nandakumar 778ffa9d2e4SAditya Nandakumar Req.AllowEmptyInput = AllowEmptyInput; 779871d658cSMircea Trofin Req.AllowUnusedPrefixes = AllowUnusedPrefixes; 780ffa9d2e4SAditya Nandakumar Req.EnableVarScope = EnableVarScope; 781ffa9d2e4SAditya Nandakumar Req.AllowDeprecatedDagOverlap = AllowDeprecatedDagOverlap; 782ffa9d2e4SAditya Nandakumar Req.Verbose = Verbose; 783ffa9d2e4SAditya Nandakumar Req.VerboseVerbose = VerboseVerbose; 784ffa9d2e4SAditya Nandakumar Req.NoCanonicalizeWhiteSpace = NoCanonicalizeWhiteSpace; 785ffa9d2e4SAditya Nandakumar Req.MatchFullLines = MatchFullLines; 7865b5b2fd2SKai Nacke Req.IgnoreCase = IgnoreCase; 787ffa9d2e4SAditya Nandakumar 788ffa9d2e4SAditya Nandakumar if (VerboseVerbose) 789ffa9d2e4SAditya Nandakumar Req.Verbose = true; 790ffa9d2e4SAditya Nandakumar 791ffa9d2e4SAditya Nandakumar FileCheck FC(Req); 7922aa0217aSJoel E. Denny if (!FC.ValidateCheckPrefixes()) 793c2735158SRui Ueyama return 2; 794c2735158SRui Ueyama 795ffa9d2e4SAditya Nandakumar Regex PrefixRE = FC.buildCheckPrefixRegex(); 796726774cbSChandler Carruth std::string REError; 797726774cbSChandler Carruth if (!PrefixRE.isValid(REError)) { 798726774cbSChandler Carruth errs() << "Unable to combine check-prefix strings into a prefix regular " 799726774cbSChandler Carruth "expression! This is likely a bug in FileCheck's verification of " 800726774cbSChandler Carruth "the check-prefix strings. Regular expression parsing failed " 801726774cbSChandler Carruth "with the following error: " 802726774cbSChandler Carruth << REError << "\n"; 803726774cbSChandler Carruth return 2; 804726774cbSChandler Carruth } 80513df4626SMatt Arsenault 806ee3c74fbSChris Lattner SourceMgr SM; 807ee3c74fbSChris Lattner 808ee3c74fbSChris Lattner // Read the expected strings from the check file. 80920247900SChandler Carruth ErrorOr<std::unique_ptr<MemoryBuffer>> CheckFileOrErr = 81020247900SChandler Carruth MemoryBuffer::getFileOrSTDIN(CheckFilename); 81120247900SChandler Carruth if (std::error_code EC = CheckFileOrErr.getError()) { 81220247900SChandler Carruth errs() << "Could not open check file '" << CheckFilename 81320247900SChandler Carruth << "': " << EC.message() << '\n'; 81420247900SChandler Carruth return 2; 81520247900SChandler Carruth } 81620247900SChandler Carruth MemoryBuffer &CheckFile = *CheckFileOrErr.get(); 81720247900SChandler Carruth 81820247900SChandler Carruth SmallString<4096> CheckFileBuffer; 819ffa9d2e4SAditya Nandakumar StringRef CheckFileText = FC.CanonicalizeFile(CheckFile, CheckFileBuffer); 82020247900SChandler Carruth 821b5a24610SJoel E. Denny unsigned CheckFileBufferID = 82220247900SChandler Carruth SM.AddNewSourceBuffer(MemoryBuffer::getMemBuffer( 82320247900SChandler Carruth CheckFileText, CheckFile.getBufferIdentifier()), 82420247900SChandler Carruth SMLoc()); 82520247900SChandler Carruth 826b5a24610SJoel E. Denny std::pair<unsigned, unsigned> ImpPatBufferIDRange; 827b5a24610SJoel E. Denny if (FC.readCheckFile(SM, CheckFileText, PrefixRE, &ImpPatBufferIDRange)) 828ee3c74fbSChris Lattner return 2; 829ee3c74fbSChris Lattner 830ee3c74fbSChris Lattner // Open the file to check and add it to SourceMgr. 83120247900SChandler Carruth ErrorOr<std::unique_ptr<MemoryBuffer>> InputFileOrErr = 832adf21f2aSRafael Espindola MemoryBuffer::getFileOrSTDIN(InputFilename); 8336e01cd67SDavid Bozier if (InputFilename == "-") 8346e01cd67SDavid Bozier InputFilename = "<stdin>"; // Overwrite for improved diagnostic messages 83520247900SChandler Carruth if (std::error_code EC = InputFileOrErr.getError()) { 836adf21f2aSRafael Espindola errs() << "Could not open input file '" << InputFilename 837adf21f2aSRafael Espindola << "': " << EC.message() << '\n'; 8388e1c6477SEli Bendersky return 2; 839ee3c74fbSChris Lattner } 84020247900SChandler Carruth MemoryBuffer &InputFile = *InputFileOrErr.get(); 8412c3e5cdfSChris Lattner 84220247900SChandler Carruth if (InputFile.getBufferSize() == 0 && !AllowEmptyInput) { 843b692bed7SChris Lattner errs() << "FileCheck error: '" << InputFilename << "' is empty.\n"; 8442bd4f8b6SXinliang David Li DumpCommandLine(argc, argv); 8458e1c6477SEli Bendersky return 2; 846b692bed7SChris Lattner } 847b692bed7SChris Lattner 84820247900SChandler Carruth SmallString<4096> InputFileBuffer; 849ffa9d2e4SAditya Nandakumar StringRef InputFileText = FC.CanonicalizeFile(InputFile, InputFileBuffer); 8502c3e5cdfSChris Lattner 851e8f2fb20SChandler Carruth SM.AddNewSourceBuffer(MemoryBuffer::getMemBuffer( 852e8f2fb20SChandler Carruth InputFileText, InputFile.getBufferIdentifier()), 853e8f2fb20SChandler Carruth SMLoc()); 854ee3c74fbSChris Lattner 8553c5d267eSJoel E. Denny std::vector<FileCheckDiag> Diags; 85602ada9bdSThomas Preud'homme int ExitCode = FC.checkInput(SM, InputFileText, 8573c5d267eSJoel E. Denny DumpInput == DumpInputNever ? nullptr : &Diags) 8583c5d267eSJoel E. Denny ? EXIT_SUCCESS 8593c5d267eSJoel E. Denny : 1; 8603c5d267eSJoel E. Denny if (DumpInput == DumpInputAlways || 8613c5d267eSJoel E. Denny (ExitCode == 1 && DumpInput == DumpInputFail)) { 8623c5d267eSJoel E. Denny errs() << "\n" 863839f8e4fSJoel E. Denny << "Input file: " << InputFilename << "\n" 8643c5d267eSJoel E. Denny << "Check file: " << CheckFilename << "\n" 8653c5d267eSJoel E. Denny << "\n" 866839f8e4fSJoel E. Denny << "-dump-input=help explains the following input dump.\n" 8673c5d267eSJoel E. Denny << "\n"; 8683c5d267eSJoel E. Denny std::vector<InputAnnotation> Annotations; 8693c5d267eSJoel E. Denny unsigned LabelWidth; 870b5a24610SJoel E. Denny BuildInputAnnotations(SM, CheckFileBufferID, ImpPatBufferIDRange, Diags, 871b5a24610SJoel E. Denny Annotations, LabelWidth); 8729fd4b5faSJoel E. Denny DumpAnnotatedInput(errs(), Req, DumpInputFilter, DumpInputContext, 873bce8fcedSJoel E. Denny InputFileText, Annotations, LabelWidth); 8743c5d267eSJoel E. Denny } 875346dfbe2SGeorge Karpenkov 876346dfbe2SGeorge Karpenkov return ExitCode; 877ee3c74fbSChris Lattner } 878