Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | unique_ptrify the result of SpecialCaseList::create | David Blaikie | 2014-09-02 | 1 | -7/+8 |
| | | | | llvm-svn: 216925 | ||||
* | Fix some cases where StringRef was being passed by const reference. Remove ↵ | Craig Topper | 2014-08-30 | 1 | -5/+4 |
| | | | | | | const from some other StringRefs since its implicitly const already. llvm-svn: 216820 | ||||
* | Remove move assignment operator to appease older GCCs. | Peter Collingbourne | 2014-07-10 | 1 | -5/+0 |
| | | | | llvm-svn: 212682 | ||||
* | Explicitly define move constructor and move assignment operator to appease MSVC. | Peter Collingbourne | 2014-07-10 | 1 | -0/+9 |
| | | | | llvm-svn: 212679 | ||||
* | SpecialCaseList: use std::unique_ptr. | Peter Collingbourne | 2014-07-10 | 1 | -15/+3 |
| | | | | llvm-svn: 212678 | ||||
* | Decouple llvm::SpecialCaseList text representation and its LLVM IR semantics. | Alexey Samsonov | 2014-07-09 | 1 | -0/+178 |
Turn llvm::SpecialCaseList into a simple class that parses text files in a specified format and knows nothing about LLVM IR. Move this class into LLVMSupport library. Implement two users of this class: * DFSanABIList in DFSan instrumentation pass. * SanitizerBlacklist in Clang CodeGen library. The latter will be modified to use actual source-level information from frontend (source file names) instead of unstable LLVM IR things (LLVM Module identifier). Remove dependency edge from ClangCodeGen/ClangDriver to LLVMTransformUtils. No functionality change. llvm-svn: 212643 |