summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
blob: 20dbc4af5ec9fb8a639e6b29c7699eb9bac1494e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//===-- ABIMacOSX_i386.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_ABIMacOSX_i386_h_
#define liblldb_ABIMacOSX_i386_h_

// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/lldb-private.h"
#include "lldb/Target/ABI.h"
#include "lldb/Core/Value.h"

namespace lldb_private {
    
    class ABIMacOSX_i386 :
    public lldb_private::ABI
    {
    public:
        ~ABIMacOSX_i386() { }
        
        virtual size_t 
        GetRedZoneSize () const;
        
        virtual bool
        PrepareTrivialCall (Thread &thread, 
                            lldb::addr_t sp,
                            lldb::addr_t functionAddress,
                            lldb::addr_t returnAddress, 
                            lldb::addr_t arg,
                            lldb::addr_t *this_arg,
                            lldb::addr_t *cmd_arg) const;
        
        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 *
        CreateInstance (const ArchSpec &arch);
        
        //------------------------------------------------------------------
        // PluginInterface protocol
        //------------------------------------------------------------------
        virtual const char *
        GetPluginName();
        
        virtual const char *
        GetShortPluginName();
        
        virtual uint32_t
        GetPluginVersion();
        
    protected:
    private:
        ABIMacOSX_i386() : lldb_private::ABI() { } // Call CreateInstance instead.
    };
    
} // namespace lldb_private

#endif  // liblldb_ABI_h_
OpenPOWER on IntegriCloud