mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 21:15:40 -04:00

Move SBRegistry method registrations from SBReproducer.cpp into files declaring the individual APIs, in order to reduce the memory consumption during build and improve maintainability. The current humongous SBRegistry constructor exhausts all memory on a NetBSD system with 4G RAM + 4G swap, therefore making it impossible to build LLDB. Differential Revision: https://reviews.llvm.org/D59427 llvm-svn: 356481
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
//===-- SBLanguageRuntime.cpp -----------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/API/SBLanguageRuntime.h"
|
|
#include "SBReproducerPrivate.h"
|
|
#include "lldb/Target/Language.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
lldb::LanguageType
|
|
SBLanguageRuntime::GetLanguageTypeFromString(const char *string) {
|
|
LLDB_RECORD_STATIC_METHOD(lldb::LanguageType, SBLanguageRuntime,
|
|
GetLanguageTypeFromString, (const char *), string);
|
|
|
|
return Language::GetLanguageTypeFromString(
|
|
llvm::StringRef::withNullAsEmpty(string));
|
|
}
|
|
|
|
const char *
|
|
SBLanguageRuntime::GetNameForLanguageType(lldb::LanguageType language) {
|
|
LLDB_RECORD_STATIC_METHOD(const char *, SBLanguageRuntime,
|
|
GetNameForLanguageType, (lldb::LanguageType),
|
|
language);
|
|
|
|
return Language::GetNameForLanguageType(language);
|
|
}
|
|
|
|
namespace lldb_private {
|
|
namespace repro {
|
|
|
|
template <>
|
|
void RegisterMethods<SBLanguageRuntime>(Registry &R) {
|
|
LLDB_REGISTER_STATIC_METHOD(lldb::LanguageType, SBLanguageRuntime,
|
|
GetLanguageTypeFromString, (const char *));
|
|
LLDB_REGISTER_STATIC_METHOD(const char *, SBLanguageRuntime,
|
|
GetNameForLanguageType, (lldb::LanguageType));
|
|
}
|
|
|
|
}
|
|
}
|