1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

finegrainify namespacification

llvm-svn: 10839
This commit is contained in:
Chris Lattner 2004-01-14 03:38:37 +00:00
parent 7cba50960d
commit 98f2200fb2
6 changed files with 111 additions and 114 deletions

View File

@ -22,7 +22,6 @@
#include "Support/CommandLine.h" #include "Support/CommandLine.h"
#include "Support/FileUtilities.h" #include "Support/FileUtilities.h"
#include <memory> #include <memory>
using namespace llvm; using namespace llvm;
// Anonymous namespace to define command line options for debugging. // Anonymous namespace to define command line options for debugging.
@ -38,12 +37,10 @@ namespace {
"(for miscompilation detection)")); "(for miscompilation detection)"));
} }
namespace llvm {
/// getPassesString - Turn a list of passes into a string which indicates the /// getPassesString - Turn a list of passes into a string which indicates the
/// command line options that must be passed to add the passes. /// command line options that must be passed to add the passes.
/// ///
std::string getPassesString(const std::vector<const PassInfo*> &Passes) { std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) {
std::string Result; std::string Result;
for (unsigned i = 0, e = Passes.size(); i != e; ++i) { for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
if (i) Result += " "; if (i) Result += " ";
@ -56,7 +53,7 @@ std::string getPassesString(const std::vector<const PassInfo*> &Passes) {
// DeleteFunctionBody - "Remove" the function by deleting all of its basic // DeleteFunctionBody - "Remove" the function by deleting all of its basic
// blocks, making it external. // blocks, making it external.
// //
void DeleteFunctionBody(Function *F) { void llvm::DeleteFunctionBody(Function *F) {
// delete the body of the function... // delete the body of the function...
F->deleteBody(); F->deleteBody();
assert(F->isExternal() && "This didn't make the function external!"); assert(F->isExternal() && "This didn't make the function external!");
@ -184,4 +181,3 @@ void BugDriver::PrintFunctionList(const std::vector<Function*> &Funcs) {
std::cout << std::flush; std::cout << std::flush;
} }
} // End llvm namespace

View File

@ -32,14 +32,14 @@
#include "Support/FileUtilities.h" #include "Support/FileUtilities.h"
#include <algorithm> #include <algorithm>
#include <set> #include <set>
using namespace llvm;
namespace llvm { namespace llvm {
extern cl::list<std::string> InputArgv;
extern cl::list<std::string> InputArgv; class ReduceMisCodegenFunctions : public ListReducer<Function*> {
class ReduceMisCodegenFunctions : public ListReducer<Function*> {
BugDriver &BD; BugDriver &BD;
public: public:
ReduceMisCodegenFunctions(BugDriver &bd) : BD(bd) {} ReduceMisCodegenFunctions(BugDriver &bd) : BD(bd) {}
virtual TestResult doTest(std::vector<Function*> &Prefix, virtual TestResult doTest(std::vector<Function*> &Prefix,
@ -53,8 +53,8 @@ public:
bool TestFuncs(const std::vector<Function*> &CodegenTest, bool TestFuncs(const std::vector<Function*> &CodegenTest,
bool KeepFiles = false); bool KeepFiles = false);
}; };
}
bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs, bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs,
bool KeepFiles) { bool KeepFiles) {
@ -328,7 +328,7 @@ namespace {
}; };
} }
void DisambiguateGlobalSymbols(Module *M) { static void DisambiguateGlobalSymbols(Module *M) {
// First, try not to cause collisions by minimizing chances of renaming an // First, try not to cause collisions by minimizing chances of renaming an
// already-external symbol, so take in external globals and functions as-is. // already-external symbol, so take in external globals and functions as-is.
Disambiguator D; Disambiguator D;
@ -406,5 +406,3 @@ bool BugDriver::debugCodeGenerator() {
return false; return false;
} }
} // End llvm namespace

View File

@ -28,21 +28,22 @@
#include "Support/FileUtilities.h" #include "Support/FileUtilities.h"
#include <fstream> #include <fstream>
#include <set> #include <set>
using namespace llvm;
namespace llvm { namespace llvm {
class DebugCrashes : public ListReducer<const PassInfo*> {
class DebugCrashes : public ListReducer<const PassInfo*> {
BugDriver &BD; BugDriver &BD;
public: public:
DebugCrashes(BugDriver &bd) : BD(bd) {} DebugCrashes(BugDriver &bd) : BD(bd) {}
// doTest - Return true iff running the "removed" passes succeeds, and running // doTest - Return true iff running the "removed" passes succeeds, and
// the "Kept" passes fail when run on the output of the "removed" passes. If // running the "Kept" passes fail when run on the output of the "removed"
// we return true, we update the current module of bugpoint. // passes. If we return true, we update the current module of bugpoint.
// //
virtual TestResult doTest(std::vector<const PassInfo*> &Removed, virtual TestResult doTest(std::vector<const PassInfo*> &Removed,
std::vector<const PassInfo*> &Kept); std::vector<const PassInfo*> &Kept);
}; };
}
DebugCrashes::TestResult DebugCrashes::TestResult
DebugCrashes::doTest(std::vector<const PassInfo*> &Prefix, DebugCrashes::doTest(std::vector<const PassInfo*> &Prefix,
@ -82,9 +83,10 @@ DebugCrashes::doTest(std::vector<const PassInfo*> &Prefix,
return NoFailure; return NoFailure;
} }
class ReduceCrashingFunctions : public ListReducer<Function*> { namespace llvm {
class ReduceCrashingFunctions : public ListReducer<Function*> {
BugDriver &BD; BugDriver &BD;
public: public:
ReduceCrashingFunctions(BugDriver &bd) : BD(bd) {} ReduceCrashingFunctions(BugDriver &bd) : BD(bd) {}
virtual TestResult doTest(std::vector<Function*> &Prefix, virtual TestResult doTest(std::vector<Function*> &Prefix,
@ -97,7 +99,8 @@ public:
} }
bool TestFuncs(std::vector<Function*> &Prefix); bool TestFuncs(std::vector<Function*> &Prefix);
}; };
}
bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) { bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
// Clone the program to try hacking it apart... // Clone the program to try hacking it apart...
@ -143,14 +146,15 @@ bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &Funcs) {
} }
/// ReduceCrashingBlocks reducer - This works by setting the terminators of all namespace llvm {
/// terminators except the specified basic blocks to a 'ret' instruction, then /// ReduceCrashingBlocks reducer - This works by setting the terminators of
/// running the simplify-cfg pass. This has the effect of chopping up the CFG /// all terminators except the specified basic blocks to a 'ret' instruction,
/// really fast which can reduce large functions quickly. /// then running the simplify-cfg pass. This has the effect of chopping up
/// /// the CFG really fast which can reduce large functions quickly.
class ReduceCrashingBlocks : public ListReducer<BasicBlock*> { ///
class ReduceCrashingBlocks : public ListReducer<BasicBlock*> {
BugDriver &BD; BugDriver &BD;
public: public:
ReduceCrashingBlocks(BugDriver &bd) : BD(bd) {} ReduceCrashingBlocks(BugDriver &bd) : BD(bd) {}
virtual TestResult doTest(std::vector<BasicBlock*> &Prefix, virtual TestResult doTest(std::vector<BasicBlock*> &Prefix,
@ -163,7 +167,8 @@ public:
} }
bool TestBlocks(std::vector<BasicBlock*> &Prefix); bool TestBlocks(std::vector<BasicBlock*> &Prefix);
}; };
}
bool ReduceCrashingBlocks::TestBlocks(std::vector<BasicBlock*> &BBs) { bool ReduceCrashingBlocks::TestBlocks(std::vector<BasicBlock*> &BBs) {
// Clone the program to try hacking it apart... // Clone the program to try hacking it apart...
@ -403,4 +408,3 @@ bool BugDriver::debugCrash() {
return false; return false;
} }
} // End llvm namespace

View File

@ -29,7 +29,6 @@ BUGPOINT NOTES:
#include "llvm/Support/ToolRunner.h" #include "llvm/Support/ToolRunner.h"
#include <fstream> #include <fstream>
#include <iostream> #include <iostream>
using namespace llvm; using namespace llvm;
namespace { namespace {
@ -61,12 +60,12 @@ namespace {
} }
namespace llvm { namespace llvm {
// Anything specified after the --args option are taken as arguments to the
// Anything specified after the --args option are taken as arguments to the // program being debugged.
// program being debugged. cl::list<std::string>
cl::list<std::string> InputArgv("args", cl::Positional, cl::desc("<program arguments>..."),
InputArgv("args", cl::Positional, cl::desc("<program arguments>..."),
cl::ZeroOrMore); cl::ZeroOrMore);
}
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
// BugDriver method implementation // BugDriver method implementation
@ -237,4 +236,3 @@ bool BugDriver::isExecutingJIT() {
return InterpreterSel == RunJIT; return InterpreterSel == RunJIT;
} }
} // End llvm namespace

View File

@ -18,17 +18,19 @@
#include "llvm/Transforms/Utils/Cloning.h" #include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Transforms/Utils/Linker.h" #include "llvm/Transforms/Utils/Linker.h"
#include "Support/FileUtilities.h" #include "Support/FileUtilities.h"
using namespace llvm;
namespace llvm { namespace llvm {
class ReduceMiscompilingPasses : public ListReducer<const PassInfo*> { class ReduceMiscompilingPasses : public ListReducer<const PassInfo*> {
BugDriver &BD; BugDriver &BD;
public: public:
ReduceMiscompilingPasses(BugDriver &bd) : BD(bd) {} ReduceMiscompilingPasses(BugDriver &bd) : BD(bd) {}
virtual TestResult doTest(std::vector<const PassInfo*> &Prefix, virtual TestResult doTest(std::vector<const PassInfo*> &Prefix,
std::vector<const PassInfo*> &Suffix); std::vector<const PassInfo*> &Suffix);
}; };
}
ReduceMiscompilingPasses::TestResult ReduceMiscompilingPasses::TestResult
ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix, ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix,
@ -122,9 +124,10 @@ ReduceMiscompilingPasses::doTest(std::vector<const PassInfo*> &Prefix,
return NoFailure; return NoFailure;
} }
class ReduceMiscompilingFunctions : public ListReducer<Function*> { namespace llvm {
class ReduceMiscompilingFunctions : public ListReducer<Function*> {
BugDriver &BD; BugDriver &BD;
public: public:
ReduceMiscompilingFunctions(BugDriver &bd) : BD(bd) {} ReduceMiscompilingFunctions(BugDriver &bd) : BD(bd) {}
virtual TestResult doTest(std::vector<Function*> &Prefix, virtual TestResult doTest(std::vector<Function*> &Prefix,
@ -137,7 +140,8 @@ public:
} }
bool TestFuncs(const std::vector<Function*> &Prefix, bool EmitBytecode); bool TestFuncs(const std::vector<Function*> &Prefix, bool EmitBytecode);
}; };
}
bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs, bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs,
bool EmitBytecode) { bool EmitBytecode) {
@ -315,4 +319,3 @@ bool BugDriver::debugMiscompilation() {
return false; return false;
} }
} // End llvm namespace

View File

@ -25,8 +25,7 @@
#include <unistd.h> #include <unistd.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/wait.h> #include <sys/wait.h>
using namespace llvm;
namespace llvm {
/// writeProgramToFile - This writes the current "Program" to the named bytecode /// writeProgramToFile - This writes the current "Program" to the named bytecode
/// file. If an error occurs, true is returned. /// file. If an error occurs, true is returned.
@ -162,4 +161,3 @@ bool BugDriver::runPasses(const std::vector<const PassInfo*> &Passes,
return !ExitedOK; return !ExitedOK;
} }
} // End llvm namespace