mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-01 23:50:43 +03:00

Required for dmd-testsuite's compilable/json2.d. Also fixes a bug regarding ConfigFile::path() with a null config file path (e.g., when disabled explicitly via `-conf=`) - the std::string(const char *) ctor segfaults for a null pointer arg, whereas llvm::StringRef handles null pointers gracefully.
78 lines
1.7 KiB
C++
78 lines
1.7 KiB
C++
//===-- cl_helpers.cpp ----------------------------------------------------===//
|
||
//
|
||
// LDC – the LLVM D compiler
|
||
//
|
||
// This file is distributed under the BSD-style LDC license. See the LICENSE
|
||
// file for details.
|
||
//
|
||
//===----------------------------------------------------------------------===//
|
||
|
||
#include "gen/cl_helpers.h"
|
||
#include "mars.h"
|
||
#include "rmem.h"
|
||
#include "root.h"
|
||
#include <algorithm>
|
||
#include <cctype> // isupper, tolower
|
||
#include <stdarg.h>
|
||
#include <utility>
|
||
|
||
namespace opts {
|
||
|
||
char *dupPathString(llvm::StringRef src) {
|
||
const auto length = src.size();
|
||
char *r = static_cast<char *>(mem.xmalloc(length + 1));
|
||
memcpy(r, src.data(), length);
|
||
#if _WIN32
|
||
std::replace(r, r + length, '/', '\\');
|
||
#endif
|
||
r[length] = '\0';
|
||
return r;
|
||
}
|
||
|
||
void initFromPathString(const char *&dest, const cl::opt<std::string> &src) {
|
||
dest = nullptr;
|
||
if (src.getNumOccurrences() != 0) {
|
||
if (src.empty()) {
|
||
error(Loc(), "Expected argument to '-%s'",
|
||
#if LDC_LLVM_VER >= 308
|
||
src.ArgStr.str().c_str()
|
||
#else
|
||
src.ArgStr
|
||
#endif
|
||
);
|
||
}
|
||
dest = dupPathString(src);
|
||
}
|
||
}
|
||
|
||
MultiSetter::MultiSetter(bool invert, bool *p, ...) {
|
||
this->invert = invert;
|
||
if (p) {
|
||
locations.push_back(p);
|
||
va_list va;
|
||
va_start(va, p);
|
||
while ((p = va_arg(va, bool *))) {
|
||
locations.push_back(p);
|
||
}
|
||
va_end(va);
|
||
}
|
||
}
|
||
|
||
void MultiSetter::operator=(bool val) {
|
||
for (auto &l : locations) {
|
||
*l = (val != invert);
|
||
}
|
||
}
|
||
|
||
void StringsAdapter::push_back(const char *cstr) {
|
||
if (!cstr || !*cstr) {
|
||
error(Loc(), "Expected argument to '-%s'", name);
|
||
}
|
||
|
||
if (!*arrp) {
|
||
*arrp = new Strings;
|
||
}
|
||
(*arrp)->push(mem.xstrdup(cstr));
|
||
}
|
||
|
||
} // namespace opts
|