mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
MC: Don't access the filesystem in MCContext's constructor
MCContext shouldn't be accessing the filesystem - that's a gross layering violation and makes it awkward to use as a library or in a daemon where it may not even be allowed filesystem access. The CWD lookup here is normally redundant anyway, since the calling context either also looks up the CWD or sets this to something more specific. Here, we fix up the one caller that doesn't already set up a debug compilation dir and make it clear that the responsibility for such set up is in the users of MCContext. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264109 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f7ed584658
commit
6d476e60b2
@ -404,14 +404,11 @@ namespace llvm {
|
||||
/// @{
|
||||
|
||||
/// \brief Get the compilation directory for DW_AT_comp_dir
|
||||
/// This can be overridden by clients which want to control the reported
|
||||
/// compilation directory and have it be something other than the current
|
||||
/// working directory.
|
||||
/// Returns an empty string if the current directory cannot be determined.
|
||||
/// The compilation directory should be set with \c setCompilationDir before
|
||||
/// calling this function. If it is unset, an empty string will be returned.
|
||||
StringRef getCompilationDir() const { return CompilationDir; }
|
||||
|
||||
/// \brief Set the compilation directory for DW_AT_comp_dir
|
||||
/// Override the default (CWD) compilation directory.
|
||||
void setCompilationDir(StringRef S) { CompilationDir = S.str(); }
|
||||
|
||||
/// \brief Get the main file name for use in error messages and debug
|
||||
|
@ -44,11 +44,6 @@ MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri,
|
||||
GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4),
|
||||
AllowTemporaryLabels(true), DwarfCompileUnitID(0),
|
||||
AutoReset(DoAutoReset), HadError(false) {
|
||||
|
||||
std::error_code EC = llvm::sys::fs::current_path(CompilationDir);
|
||||
if (EC)
|
||||
CompilationDir.clear();
|
||||
|
||||
SecureLogFile = getenv("AS_SECURE_LOG_FILE");
|
||||
SecureLog = nullptr;
|
||||
SecureLogUsed = false;
|
||||
|
@ -452,6 +452,12 @@ int main(int argc, char **argv) {
|
||||
Ctx.setDwarfDebugProducer(StringRef(DwarfDebugProducer));
|
||||
if (!DebugCompilationDir.empty())
|
||||
Ctx.setCompilationDir(DebugCompilationDir);
|
||||
else {
|
||||
// If no compilation dir is set, try to use the current directory.
|
||||
SmallString<128> CWD;
|
||||
if (!sys::fs::current_path(CWD))
|
||||
Ctx.setCompilationDir(CWD);
|
||||
}
|
||||
if (!MainFileName.empty())
|
||||
Ctx.setMainFileName(MainFileName);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user