[Support] Beef up and expose the response file parsing in llvm::cl
authorReid Kleckner <reid@kleckner.net>
Thu, 18 Jul 2013 16:52:05 +0000 (16:52 +0000)
committerReid Kleckner <reid@kleckner.net>
Thu, 18 Jul 2013 16:52:05 +0000 (16:52 +0000)
commit431b0a7646105c53c607cbf0015c615269bc5f11
treea2ae7f9107507a91b897488faa0d40bf1f6d2898
parent3ece065dd6a480acb551a8851b6ea769390be1c2
[Support] Beef up and expose the response file parsing in llvm::cl

The plan is to use it for clang and lld.

Major behavior changes:
- We can now parse UTF-16 files that have a byte order mark.
- PR16209: Don't drop backslashes on the floor if they don't escape
  anything.

The actual parsing loop was based on code from Clang's driver.cpp,
although it's been rewritten to track its state with control flow rather
than state variables.

Reviewers: hans

Differential Revision: http://llvm-reviews.chandlerc.com/D1170

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186587 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Support/CommandLine.h
lib/Support/CommandLine.cpp
test/Other/ResponseFile.ll
unittests/Support/CommandLineTest.cpp