* alpha-tdep.c (heuristic_proc_desc): Increase search limit
[deliverable/binutils-gdb.git] / gdb / tic80-tdep.c
CommitLineData
12967062
FF
1/* Target-dependent code for the TI TMS320C80 (MVP) architecture,
2 for GDB, the GNU Debugger.
3 Copyright 1997 Free Software Foundation, Inc.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21#include "defs.h"
22
23CORE_ADDR
24tic80_skip_prologue (pc)
25 CORE_ADDR pc;
26{
27 error ("tic80_skip_prologue not implemented");
28}
29
30CORE_ADDR
31tic80_frame_chain (finfo)
32 struct frame_info *finfo;
33{
34 error ("tic80_frame_chain not implemented");
35}
36
37CORE_ADDR
38tic80_frame_saved_pc (finfo)
39 struct frame_info *finfo;
40{
41 error ("tic80_frame_saved_pc not implemented");
42}
43
44CORE_ADDR
45tic80_saved_pc_after_call (finfo)
46 struct frame_info *finfo;
47{
48 error ("tic80_saved_pc_after_call not implemented");
49}
50
51void
52tic80_pop_frame ()
53{
54 error ("tic80_pop_frame not implemented");
55}
56
57void
58tic80_store_return_value (valtype, valbuf)
59 struct type *valtype;
60 char *valbuf;
61{
62 error ("tic80_store_return_value not implemented");
63}
64
65/* Put here the code to store, into a struct frame_saved_regs, the
66 addresses of the saved registers of frame described by FRAME_INFO.
67 This includes special registers such as pc and fp saved in special
68 ways in the stack frame. sp is even more special: the address we
69 return for it IS the sp for the next frame. */
70
71void
72tic80_frame_find_saved_regs (fi, fsr)
73 struct frame_info *fi;
74 struct frame_saved_regs *fsr;
75{
76 error ("tic80_frame_find_saved_regs not implemented");
77}
78
79/* Given a return value in `regbuf' with a type `valtype',
80 extract and copy its value into `valbuf'. */
81
82void
83tic80_extract_return_value (valtype, regbuf, valbuf)
84 struct type *valtype;
85 char regbuf[REGISTER_BYTES];
86 char *valbuf;
87{
88 error ("tic80_extract_return_value not implemented");
89}
This page took 0.030814 seconds and 4 git commands to generate.