2010-06-09 00:52:24 +08:00
|
|
|
//===-- ABISysV_x86_64.h ----------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef liblldb_ABISysV_x86_64_h_
|
|
|
|
#define liblldb_ABISysV_x86_64_h_
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
|
|
|
#include "lldb/lldb-private.h"
|
|
|
|
#include "lldb/Target/ABI.h"
|
|
|
|
|
|
|
|
namespace lldb_private {
|
|
|
|
|
|
|
|
class ABISysV_x86_64 :
|
|
|
|
public lldb_private::ABI
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~ABISysV_x86_64() { }
|
|
|
|
|
|
|
|
virtual size_t
|
|
|
|
GetRedZoneSize () const;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
PrepareTrivialCall (Thread &thread,
|
|
|
|
lldb::addr_t sp,
|
|
|
|
lldb::addr_t functionAddress,
|
|
|
|
lldb::addr_t returnAddress,
|
Removed the hacky "#define this ___clang_this" handler
for C++ classes. Replaced it with a less hacky approach:
- If an expression is defined in the context of a
method of class A, then that expression is wrapped as
___clang_class::___clang_expr(void*) { ... }
instead of ___clang_expr(void*) { ... }.
- ___clang_class is resolved as the type of the target
of the "this" pointer in the method the expression
is defined in.
- When reporting the type of ___clang_class, a method
with the signature ___clang_expr(void*) is added to
that class, so that Clang doesn't complain about a
method being defined without a corresponding
declaration.
- Whenever the expression gets called, "this" gets
looked up, type-checked, and then passed in as the
first argument.
This required the following changes:
- The ABIs were changed to support passing of the "this"
pointer as part of trivial calls.
- ThreadPlanCallFunction and ClangFunction were changed
to support passing of an optional "this" pointer.
- ClangUserExpression was extended to perform the
wrapping described above.
- ClangASTSource was changed to revert the changes
required by the hack.
- ClangExpressionParser, IRForTarget, and
ClangExpressionDeclMap were changed to handle
different manglings of ___clang_expr flexibly. This
meant no longer searching for a function called
___clang_expr, but rather looking for a function whose
name *contains* ___clang_expr.
- ClangExpressionParser and ClangExpressionDeclMap now
remember whether "this" is required, and know how to
look it up as necessary.
A few inheritance bugs remain, and I'm trying to resolve
these. But it is now possible to use "this" as well as
refer implicitly to member variables, when in the proper
context.
llvm-svn: 114384
2010-09-21 08:44:12 +08:00
|
|
|
lldb::addr_t arg,
|
2010-12-14 06:46:15 +08:00
|
|
|
lldb::addr_t *this_arg,
|
|
|
|
lldb::addr_t *cmd_arg) const;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
virtual bool
|
|
|
|
PrepareNormalCall (Thread &thread,
|
|
|
|
lldb::addr_t sp,
|
|
|
|
lldb::addr_t functionAddress,
|
|
|
|
lldb::addr_t returnAddress,
|
|
|
|
ValueList &args) const;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
GetArgumentValues (Thread &thread,
|
|
|
|
ValueList &values) const;
|
|
|
|
|
|
|
|
virtual bool
|
|
|
|
GetReturnValue (Thread &thread,
|
|
|
|
Value &value) const;
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// Static Functions
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
static void
|
|
|
|
Initialize();
|
|
|
|
|
|
|
|
static void
|
|
|
|
Terminate();
|
|
|
|
|
|
|
|
static lldb_private::ABI *
|
2011-02-16 05:59:32 +08:00
|
|
|
CreateInstance (const ArchSpec &arch);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
// PluginInterface protocol
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
virtual const char *
|
|
|
|
GetPluginName();
|
|
|
|
|
|
|
|
virtual const char *
|
|
|
|
GetShortPluginName();
|
|
|
|
|
|
|
|
virtual uint32_t
|
|
|
|
GetPluginVersion();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
ABISysV_x86_64() : lldb_private::ABI() { } // Call CreateInstance instead.
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lldb_private
|
|
|
|
|
|
|
|
#endif // liblldb_ABI_h_
|