mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 05:32:28 +08:00
Initialization: move InstructionEmulation to full initialization
The debug server does not need to use the instruction emulation. This helps reduce the size of the final lldb-server binary by another ~100K (~1% savings). llvm-svn: 359832
This commit is contained in:
@@ -8,9 +8,6 @@
|
||||
|
||||
#include "lldb/Initialization/SystemInitializerCommon.h"
|
||||
|
||||
#include "Plugins/Instruction/ARM/EmulateInstructionARM.h"
|
||||
#include "Plugins/Instruction/MIPS/EmulateInstructionMIPS.h"
|
||||
#include "Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h"
|
||||
#include "Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h"
|
||||
#include "lldb/Host/FileSystem.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
@@ -99,10 +96,6 @@ llvm::Error SystemInitializerCommon::Initialize() {
|
||||
|
||||
process_gdb_remote::ProcessGDBRemoteLog::Initialize();
|
||||
|
||||
EmulateInstructionARM::Initialize();
|
||||
EmulateInstructionMIPS::Initialize();
|
||||
EmulateInstructionMIPS64::Initialize();
|
||||
|
||||
#if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__)
|
||||
ProcessPOSIXLog::Initialize();
|
||||
#endif
|
||||
@@ -117,10 +110,6 @@ void SystemInitializerCommon::Terminate() {
|
||||
static Timer::Category func_cat(LLVM_PRETTY_FUNCTION);
|
||||
Timer scoped_timer(func_cat, LLVM_PRETTY_FUNCTION);
|
||||
|
||||
EmulateInstructionARM::Terminate();
|
||||
EmulateInstructionMIPS::Terminate();
|
||||
EmulateInstructionMIPS64::Terminate();
|
||||
|
||||
#if defined(_WIN32)
|
||||
ProcessWindowsLog::Terminate();
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user