aboutsummaryrefslogtreecommitdiff
path: root/gdb/tic80-tdep.c
blob: d43f25ed55c91443f909dc46bcc4870e79fa83a1 (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
88
89
/* Target-dependent code for the TI TMS320C80 (MVP) architecture,
   for GDB, the GNU Debugger.
   Copyright 1997 Free Software Foundation, Inc.

This file is part of GDB.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */

#include "defs.h"

CORE_ADDR
tic80_skip_prologue (pc)
     CORE_ADDR pc;
{
  error ("tic80_skip_prologue not implemented");
}

CORE_ADDR
tic80_frame_chain (finfo)
     struct frame_info *finfo;
{
  error ("tic80_frame_chain not implemented");
}

CORE_ADDR
tic80_frame_saved_pc (finfo)
     struct frame_info *finfo;
{
  error ("tic80_frame_saved_pc not implemented");
}

CORE_ADDR
tic80_saved_pc_after_call (finfo)
     struct frame_info *finfo;
{
  error ("tic80_saved_pc_after_call not implemented");
}

void
tic80_pop_frame ()
{
  error ("tic80_pop_frame not implemented");
}

void
tic80_store_return_value (valtype, valbuf)
    struct type *valtype;
    char *valbuf;
{
  error ("tic80_store_return_value not implemented");
}

/* Put here the code to store, into a struct frame_saved_regs, the
   addresses of the saved registers of frame described by FRAME_INFO.
   This includes special registers such as pc and fp saved in special
   ways in the stack frame.  sp is even more special: the address we
   return for it IS the sp for the next frame. */

void
tic80_frame_find_saved_regs (fi, fsr)
     struct frame_info *fi;
     struct frame_saved_regs *fsr;
{
  error ("tic80_frame_find_saved_regs not implemented");
}

/* Given a return value in `regbuf' with a type `valtype', 
   extract and copy its value into `valbuf'.  */

void
tic80_extract_return_value (valtype, regbuf, valbuf)
    struct type *valtype;
    char regbuf[REGISTER_BYTES];
    char *valbuf;
{
  error ("tic80_extract_return_value not implemented");
}