llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/InstrumentationRuntimeASan.cpp

//===-- InstrumentationRuntimeASan.cpp ------------------------------------===//
//
// 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 "InstrumentationRuntimeASan.h"

#include "lldb/Breakpoint/StoppointCallbackContext.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/PluginInterface.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Symbol/Symbol.h"
#include "lldb/Target/Process.h"
#include "lldb/Utility/RegularExpression.h"

#include "Plugins/InstrumentationRuntime/Utility/ReportRetriever.h"

usingnamespacelldb;
usingnamespacelldb_private;

LLDB_PLUGIN_DEFINE()

lldb::InstrumentationRuntimeSP
InstrumentationRuntimeASan::CreateInstance(const lldb::ProcessSP &process_sp) {}

void InstrumentationRuntimeASan::Initialize() {}

void InstrumentationRuntimeASan::Terminate() {}

lldb::InstrumentationRuntimeType InstrumentationRuntimeASan::GetTypeStatic() {}

InstrumentationRuntimeASan::~InstrumentationRuntimeASan() {}

const RegularExpression &
InstrumentationRuntimeASan::GetPatternForRuntimeLibrary() {}

bool InstrumentationRuntimeASan::CheckIfRuntimeIsValid(
    const lldb::ModuleSP module_sp) {}

bool InstrumentationRuntimeASan::NotifyBreakpointHit(
    void *baton, StoppointCallbackContext *context, user_id_t break_id,
    user_id_t break_loc_id) {}

void InstrumentationRuntimeASan::Activate() {}

void InstrumentationRuntimeASan::Deactivate() {}