- Apr 22, 2018
-
-
Jonas Devlieghere authored
Makes error handling more consistent by using the helpers in support. llvm-svn: 330537
-
Jonas Devlieghere authored
Makes error handling more consistent by using the helpers in support. llvm-svn: 330536
-
Jonas Devlieghere authored
When a prefix is passed, we need to print a colon a space after it, not just the prefix. llvm-svn: 330535
-
Craig Topper authored
llvm-svn: 330534
-
Craig Topper authored
This matches the other FENCE instructions. llvm-svn: 330533
-
Craig Topper authored
llvm-svn: 330532
-
Craig Topper authored
[X86] Remove DATA32_PREFIX. Hack the printing for DATA16_PREFIX to print 'data32' in 16-bit mode. Hack the asm parser to convert 'data32' to 'data16' in 16-bit mode. Improve the error messages to match GNU assembler. This also allows us to remove the hack from the disassembler table building. llvm-svn: 330531
-
Brian Gesiak authored
Summary: Add tests for the improved stream type detection added to `llvm-bcanalyzer` in https://reviews.llvm.org/D41979. Test Plan: `check-clang` Reviewers: pcc, aprantl, mehdi_amini, george.karpenkov Reviewed By: aprantl Subscribers: cfe-commits, a.sidorin Differential Revision: https://reviews.llvm.org/D41980 llvm-svn: 330530
-
Brian Gesiak authored
Summary: `llvm-bcanalyzer` prints out the stream type of the file it is analyzing. If the file begins with the LLVM IR magic number, it reports a stream type of "LLVM IR". However, any other bitstream format is reported as "unknown". Add some checks for two other common bitstream formats: Clang AST files, which begin with 'CPCH', and Clang serialized diagnostics, which begin with 'DIAG'. Test Plan: `check-llvm` Reviewers: pcc, aprantl, mehdi_amini, davide, george.karpenkov, JDevlieghere Reviewed By: JDevlieghere Subscribers: JDevlieghere, bruno, davide, llvm-commits Differential Revision: https://reviews.llvm.org/D41979 llvm-svn: 330529
-
Chandler Carruth authored
This commit has been breaking most bots for a day now. There is a fix proposed in https://reviews.llvm.org/D45912 but when I applied that I just got different errors. Reverting to get our bots back to green. llvm-svn: 330528
-
- Apr 21, 2018
-
-
Simon Pilgrim authored
llvm-svn: 330527
-
Jonas Devlieghere authored
Several tools prefix the error/warning/note output with the name of the tool. One such tool is LLD for example. This commit adds as an optional 'Prefix' argument to the convenience helpers. llvm-svn: 330526
-
Simon Pilgrim authored
llvm-svn: 330525
-
Jonas Devlieghere authored
Use convenience helpers in WithColor to print errors, warnings and notes in a few more tools. llvm-svn: 330524
-
Simon Pilgrim authored
llvm-svn: 330523
-
Simon Pilgrim authored
llvm-svn: 330522
-
Simon Pilgrim authored
[X86] Strip unnecessary vector integer math, shift-imm, extend, shuffle, pack/unpack instruction instrw overrides from scheduler models. llvm-svn: 330521
-
Craig Topper authored
Ultimately I want to use this to remove the intrinsics for these instructions. llvm-svn: 330520
-
Craig Topper authored
A future patch will turn this into MULHU/MULHS. llvm-svn: 330519
-
Jonas Devlieghere authored
The current way that the lit configuration is generated for the LLDB tests that run using dotest causes cmake to fail when using a generator which supports multiple configurations (such as Visual Studio). The failure is because file GENERATE will create a file *per possible configuration* resulting in the same lit configuration file being overwritten multiple times. To fix the issue, we need to create a single lit file that is agnostic of the configurations and can be used for any configuration. Patch by: Stella Stamenova Differential revision: https://reviews.llvm.org/D45918 llvm-svn: 330518
-
Craig Topper authored
llvm-svn: 330517
-
Sanjay Patel authored
llvm-svn: 330516
-
Sanjay Patel authored
llvm-svn: 330515
-
Simon Pilgrim authored
llvm-svn: 330514
-
Simon Pilgrim authored
llvm-svn: 330513
-
Simon Pilgrim authored
llvm-svn: 330512
-
Zinovy Nis authored
The patch introduces a new command line option '-check-suffix' for check_clang_tidy.py to allow multiple %check_clang_tidy% in a single test file. Sample: // RUN: %check_clang_tidy -check-suffix=FLAG-1 %s misc-unused-using-decls %t -- -- <options-set-1> // RUN: %check_clang_tidy -check-suffix=FLAG-2 %s misc-unused-using-decls %t -- -- <options-set-2> ... +// CHECK-MESSAGES-FLAG-1: :[[@LINE-4]]:10: warning: using decl 'B' is unused [misc-unused-using-decls] +// CHECK-MESSAGES-FLAG-2: :[[@LINE-7]]:10: warning: using decl 'A' is unused [misc-unused-using-decls] +// CHECK-FIXES-FLAG-1-NOT: using a::A;$ +// CHECK-FIXES-FLAG-2-NOT: using a::B;$ Differential Revision: https://reviews.llvm.org/D45776 llvm-svn: 330511
-
Simon Pilgrim authored
The required the default skylake schedules to be updated - these were being completely overriden by the InstRW and the existing values not used at all. llvm-svn: 330510
-
Zinovy Nis authored
Add a new target for install: install-clang-apply-replacements. So if you need clang-tidy and clang-apply-replacements tools only, you may build and install only these tools: make install-clang-tidy install-clang-apply-replacements Differential Revision: https://reviews.llvm.org/D45160 llvm-svn: 330509
-
Simon Pilgrim authored
llvm-svn: 330508
-
Petr Pavlu authored
Fix testing of clang_File_tryGetRealPathName() in LibclangReparseTest.FileName when executing in an environment which has TMPDIR set to a symbolic link that points to an actual directory. The test would fail because the name returned by clang_File_tryGetRealPathName() has the symlink resolved but the test compared it to the original filename of a temporary file. The patch addresses the problem by checking only that the value returned by clang_File_tryGetRealPathName() ends with "main.cpp". Additionally, the patch makes the previous assertion in the test that checks result of clang_getFileName() stricter. It newly verifies that the name returned by the function is exactly same as what was given to clang_parseTranslationUnit()/clang_getFile(). Differential Revision: https://reviews.llvm.org/D45807 llvm-svn: 330507
-
Simon Pilgrim authored
llvm-svn: 330506
-
Simon Pilgrim authored
llvm-svn: 330505
-
Ed Maste authored
llvm.org/pr37194 llvm-svn: 330504
-
Simon Pilgrim authored
llvm-svn: 330503
-
Simon Pilgrim authored
llvm-svn: 330502
-
Simon Pilgrim authored
llvm-svn: 330501
-
Ed Maste authored
Previously, an attempt to read an unreadable address reported zeros. Now, if DoReadMemory or DoWriteMemory encounters error then return 0 (bytes read or written) so that the error is reported to the user. llvm.org/pr37190 llvm-svn: 330500
-
Simon Pilgrim authored
llvm-svn: 330499
-
Simon Pilgrim authored
llvm-svn: 330498
-