/[gxemul]/trunk/src/include/machine.h
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/include/machine.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 10 by dpavlin, Mon Oct 8 16:18:27 2007 UTC revision 42 by dpavlin, Mon Oct 8 16:22:32 2007 UTC
# Line 2  Line 2 
2  #define MACHINE_H  #define MACHINE_H
3    
4  /*  /*
5   *  Copyright (C) 2005  Anders Gavare.  All rights reserved.   *  Copyright (C) 2005-2007  Anders Gavare.  All rights reserved.
6   *   *
7   *  Redistribution and use in source and binary forms, with or without   *  Redistribution and use in source and binary forms, with or without
8   *  modification, are permitted provided that the following conditions are met:   *  modification, are permitted provided that the following conditions are met:
# Line 28  Line 28 
28   *  SUCH DAMAGE.   *  SUCH DAMAGE.
29   *   *
30   *   *
31   *  $Id: machine.h,v 1.58 2005/06/24 19:15:08 debug Exp $   *  $Id: machine.h,v 1.179 2007/06/15 17:02:39 debug Exp $
32   */   */
33    
34  #include <sys/types.h>  #include <sys/types.h>
 #include <sys/time.h>  
35    
36  #include "symbol.h"  #include "symbol.h"
37    
 #include "arcbios.h"  
 #include "machine_x86.h"  
   
 #define MAX_BREAKPOINTS         8  
 #define BREAKPOINT_FLAG_R       1  
   
 #define MAX_TICK_FUNCTIONS      14  
   
38  struct cpu_family;  struct cpu_family;
39  struct diskimage;  struct diskimage;
40  struct emul;  struct emul;
41  struct fb_window;  struct fb_window;
42    struct machine_arcbios;
43    struct machine_pmax;
44  struct memory;  struct memory;
45    struct of_data;
46    struct settings;
47    
48    
49    /*  TODO: This should probably go away...  */
50    struct isa_pic_data {
51            struct pic8259_data     *pic1;
52            struct pic8259_data     *pic2;
53    
54            int                     *pending_timer_interrupts;
55            int                     last_int;
56    };
57    
58    struct breakpoints {
59            int             n;
60    
61            /*  Arrays, with one element for each entry:  */
62            char            **string;
63            uint64_t        *addr;
64    };
65    
66    struct tick_functions {
67            int     n_entries;
68    
69  /*  Ugly:  */          /*  Arrays, with one element for each entry:  */
70  struct kn230_csr;          int     *ticks_till_next;
71  struct kn02_csr;          int     *ticks_reset_value;
72  struct dec_ioasic_data;          void    (*(*f))(struct cpu *, void *);
73  struct ps2_data;          void    **extra;
74  struct dec5800_data;  };
75  struct au1x00_ic_data;  
76  struct malta_data;  struct x11_md {
77  struct vr41xx_data;          /*  X11/framebuffer stuff:  */
78  struct jazz_data;          int     in_use;
79  struct crime_data;          int     scaledown;
80  struct mace_data;          int     scaleup;
81  struct sgi_ip20_data;          int     n_display_names;
82  struct sgi_ip22_data;          char    **display_names;
83  struct sgi_ip30_data;          int     current_display_name_nr;        /*  updated by x11.c  */
84    
85  #define MACHINE_NAME_MAXBUF             200          int     n_fb_windows;
86            struct fb_window **fb_windows;
87    };
88    
89  struct machine {  struct machine {
90          /*  Pointer back to the emul struct we are in:  */          /*  Pointer back to the emul struct we are in:  */
91          struct emul *emul;          struct emul *emul;
92    
93            /*  Settings:  */
94            struct settings *settings;
95    
96          /*  Name as choosen by the user:  */          /*  Name as choosen by the user:  */
97          char    *name;          char    *name;
98    
99            /*  Full "path" to the machine, e.g. "emul[0].machine[0]":  */
100            char    *path;
101    
102          int     arch;                   /*  ARCH_MIPS, ARCH_PPC, ..  */          int     arch;                   /*  ARCH_MIPS, ARCH_PPC, ..  */
103          int     machine_type;           /*  MACHINE_DEC, ..  */          int     machine_type;           /*  MACHINE_PMAX, ..  */
104          int     machine_subtype;        /*  MACHINE_DEC_3MAX_5000, ..  */          int     machine_subtype;        /*  MACHINE_DEC_3MAX_5000, ..  */
105    
106            /*  Name set by code in src/machines/machine_*.c:  */
107          char    *machine_name;          char    *machine_name;
108    
109          /*  The serial number is mostly used when emulating multiple machines          /*  The serial number is mostly used when emulating multiple machines
# Line 87  struct machine { Line 112  struct machine {
112          int     serial_nr;          int     serial_nr;
113          int     nr_of_nics;          int     nr_of_nics;
114    
115            /*  TODO: How about multiple cpu familys in one machine?  */
116          struct cpu_family *cpu_family;          struct cpu_family *cpu_family;
117    
         /*  
          *  The "mainbus":  
          *  
          *      o)  memory  
          *      o)  devices  
          *      o)  CPUs  
          */  
   
118          struct memory *memory;          struct memory *memory;
119    
120          int     main_console_handle;          int     main_console_handle;
121    
122          /*  Hardware devices, run every x clock cycles.  */          /*  Tick functions (e.g. hardware devices):  */
123          int     n_tick_entries;          struct tick_functions tick_functions;
         int     ticks_till_next[MAX_TICK_FUNCTIONS];  
         int     ticks_reset_value[MAX_TICK_FUNCTIONS];  
         void    (*tick_func[MAX_TICK_FUNCTIONS])(struct cpu *, void *);  
         void    *tick_extra[MAX_TICK_FUNCTIONS];  
   
         void    (*md_interrupt)(struct machine *m, struct cpu *cpu,  
                     int irq_nr, int assert);  
124    
125          char    *cpu_name;  /*  TODO: remove this, there could be several          char    *cpu_name;  /*  TODO: remove this, there could be several
126                                  cpus with different names in a machine  */                                  cpus with different names in a machine  */
# Line 120  struct machine { Line 131  struct machine {
131          int     ncpus;          int     ncpus;
132          struct cpu **cpus;          struct cpu **cpus;
133    
         /*  These are used by stuff in cpu.c, mostly:  */  
         int64_t ncycles;  
         int64_t ncycles_show;  
         int64_t ncycles_flush;  
         int64_t ncycles_since_gettimeofday;  
         struct timeval starttime;  
         int     a_few_cycles;  
         int     a_few_instrs;  
   
134          struct diskimage *first_diskimage;          struct diskimage *first_diskimage;
135    
136          struct symbol_context symbol_context;          struct symbol_context symbol_context;
# Line 138  struct machine { Line 140  struct machine {
140          int     memory_offset_in_mb;          int     memory_offset_in_mb;
141          int     prom_emulation;          int     prom_emulation;
142          int     register_dump;          int     register_dump;
143            int     arch_pagesize;
144    
145          int     n_breakpoints;          int     bootdev_type;
146          char    *breakpoint_string[MAX_BREAKPOINTS];          int     bootdev_id;
147          uint64_t breakpoint_addr[MAX_BREAKPOINTS];          char    *bootstr;
148          int     breakpoint_flags[MAX_BREAKPOINTS];          char    *bootarg;
149    
150          /*  Cache sizes: (1 << x) x=0 for default values  */          /*  Breakpoints:  */
151          /*  TODO: these are _PER CPU_!  */          struct breakpoints breakpoints;
152          int     cache_picache;  
153          int     cache_pdcache;          int     halt_on_nonexistant_memaccess;
         int     cache_secondary;  
         int     cache_picache_linesize;  
         int     cache_pdcache_linesize;  
         int     cache_secondary_linesize;  
   
         int     dbe_on_nonexistant_memaccess;  
         int     bintrans_enable;  
         int     old_bintrans_enable;  
         int     bintrans_enabled_from_start;  
         int     bintrans_size;  
154          int     instruction_trace;          int     instruction_trace;
         int     single_step_on_bad_addr;  
155          int     show_nr_of_instructions;          int     show_nr_of_instructions;
156          int     show_symbolic_register_names;          int     show_trace_tree;
         int64_t max_instructions;  
157          int     emulated_hz;          int     emulated_hz;
158          int     max_random_cycles_per_chunk;          int     allow_instruction_combinations;
         int     speed_tricks;  
159          char    *userland_emul;         /*  NULL for no userland emulation  */          char    *userland_emul;         /*  NULL for no userland emulation  */
160          int     force_netboot;          int     force_netboot;
161          int     slow_serial_interrupts_hack_for_linux;          int     slow_serial_interrupts_hack_for_linux;
162          uint64_t file_loaded_end_addr;          uint64_t file_loaded_end_addr;
163          char    *boot_kernel_filename;          char    *boot_kernel_filename;
164          char    *boot_string_argument;          char    *boot_string_argument;
   
         int     automatic_clock_adjustment;  
165          int     exit_without_entering_debugger;          int     exit_without_entering_debugger;
         int     show_trace_tree;  
   
166          int     n_gfx_cards;          int     n_gfx_cards;
167    
168            /*  Instruction statistics:  */
169            char    *statistics_filename;
170            FILE    *statistics_file;
171            int     statistics_enabled;
172            char    *statistics_fields;     /*  "vpi" etc.  */
173    
174            /*  X11/framebuffer stuff (per machine):  */
175            struct x11_md x11_md;
176    
177          /*  Machine-dependent: (PROM stuff, etc.)  */          /*  Machine-dependent: (PROM stuff, etc.)  */
178          union {          union {
179                  struct machine_arcbios  arc;                  struct machine_arcbios  *arc;
180                  struct machine_pc       pc;                  struct machine_pmax     *pmax;
181                    struct of_data          *of_data;
182          } md;          } md;
183    
184          /*  Machine-dependent interrupt specific structs:  */          /*  Bus-specific interrupt data:  */
185          union {          /*  TODO: Remove!  */
186                  struct kn230_csr *kn230_csr;          struct isa_pic_data isa_pic_data;
187                  struct kn02_csr *kn02_csr;  };
                 struct dec_ioasic_data *dec_ioasic_data;  
                 struct ps2_data *ps2_data;  
                 struct dec5800_data *dec5800_csr;  
                 struct au1x00_ic_data *au1x00_ic_data;  
                 struct vr41xx_data *vr41xx_data;        
                 struct jazz_data *jazz_data;  
                 struct malta_data *malta_data;  
                 struct sgi_ip20_data *sgi_ip20_data;  
                 struct sgi_ip22_data *sgi_ip22_data;  
                 struct sgi_ip30_data *sgi_ip30_data;  
                 struct {  
                         struct crime_data *crime_data;  
                         struct mace_data *mace_data;  
                 } ip32;  
         } md_int;  
188    
         /*  X11/framebuffer stuff:  */  
         int     use_x11;  
         int     x11_scaledown;  
         int     x11_n_display_names;  
         char    **x11_display_names;  
         int     x11_current_display_name_nr;    /*  updated by x11.c  */  
189    
190          int     n_fb_windows;  /*  Tick function "prototype":  */
191          struct fb_window **fb_windows;  #define DEVICE_TICK(x)  void dev_ ## x ## _tick(struct cpu *cpu, void *extra)
 };  
192    
193    
194  /*  /*
# Line 225  struct machine { Line 199  struct machine {
199  #define ARCH_MIPS               1  #define ARCH_MIPS               1
200  #define ARCH_PPC                2  #define ARCH_PPC                2
201  #define ARCH_SPARC              3  #define ARCH_SPARC              3
202  #define ARCH_URISC              4  #define ARCH_ALPHA              4
203  #define ARCH_HPPA               5  #define ARCH_ARM                5
204  #define ARCH_ALPHA              6  #define ARCH_SH                 6
205  #define ARCH_X86                7  #define ARCH_M88K               7
 #define ARCH_ARM                8  
206    
207  /*  MIPS:  */  /*  MIPS:  */
208  #define MACHINE_BAREMIPS        1000  #define MACHINE_BAREMIPS        1000
209  #define MACHINE_TESTMIPS        1001  #define MACHINE_TESTMIPS        1001
210  #define MACHINE_DEC             1002  #define MACHINE_PMAX            1002
211  #define MACHINE_COBALT          1003  #define MACHINE_COBALT          1003
212  #define MACHINE_HPCMIPS         1004  #define MACHINE_HPCMIPS         1004
213  #define MACHINE_PS2             1005  #define MACHINE_PS2             1005
214  #define MACHINE_SGI             1006  #define MACHINE_SGI             1006
215  #define MACHINE_ARC             1007  #define MACHINE_ARC             1007
216  #define MACHINE_MESHCUBE        1008  #define MACHINE_EVBMIPS         1008
217  #define MACHINE_NETGEAR         1009  #define MACHINE_ALGOR           1009
218  #define MACHINE_SONYNEWS        1010  #define MACHINE_QEMU_MIPS       1010
 #define MACHINE_EVBMIPS         1011  
 #define MACHINE_PSP             1012  
219    
220  /*  PPC:  */  /*  PPC:  */
221  #define MACHINE_BAREPPC         2000  #define MACHINE_BAREPPC         2000
222  #define MACHINE_TESTPPC         2001  #define MACHINE_TESTPPC         2001
223  #define MACHINE_WALNUT          2002  #define MACHINE_PMPPC           2002
224  #define MACHINE_PMPPC           2003  #define MACHINE_BEBOX           2003
225  #define MACHINE_SANDPOINT       2004  #define MACHINE_PREP            2004
226  #define MACHINE_BEBOX           2005  #define MACHINE_MACPPC          2005
227  #define MACHINE_PREP            2006  #define MACHINE_MVMEPPC         2006
 #define MACHINE_MACPPC          2007  
 #define MACHINE_DB64360         2008  
228    
229  /*  SPARC:  */  /*  SPARC:  */
230  #define MACHINE_BARESPARC       3000  #define MACHINE_BARESPARC       3000
231  #define MACHINE_ULTRA1          3001  #define MACHINE_TESTSPARC       3001
232    #define MACHINE_SPARC           3002
 /*  URISC:  */  
 #define MACHINE_BAREURISC       4000  
 #define MACHINE_TESTURISC       4001  
   
 /*  HPPA:  */  
 #define MACHINE_BAREHPPA        5000  
 #define MACHINE_TESTHPPA        5001  
233    
234  /*  Alpha:  */  /*  Alpha:  */
235  #define MACHINE_BAREALPHA       6000  #define MACHINE_BAREALPHA       4000
236  #define MACHINE_TESTALPHA       6001  #define MACHINE_TESTALPHA       4001
237    #define MACHINE_ALPHA           4002
 /*  X86:  */  
 #define MACHINE_BAREX86         7000  
 #define MACHINE_X86             7001  
238    
239  /*  ARM:  */  /*  ARM:  */
240  #define MACHINE_BAREARM         8000  #define MACHINE_BAREARM         5000
241  #define MACHINE_TESTARM         8001  #define MACHINE_TESTARM         5001
242    #define MACHINE_CATS            5002
243    #define MACHINE_HPCARM          5003
244    #define MACHINE_NETWINDER       5004
245    #define MACHINE_IQ80321         5005
246    #define MACHINE_QEMU_ARM        5006
247    
248    /*  SH:  */
249    #define MACHINE_BARESH          6000
250    #define MACHINE_TESTSH          6001
251    #define MACHINE_HPCSH           6002
252    #define MACHINE_DREAMCAST       6003
253    #define MACHINE_LANDISK         6004
254    
255    /*  M88K:  */
256    #define MACHINE_BAREM88K        7000
257    #define MACHINE_TESTM88K        7001
258    #define MACHINE_MVME88K         7002
259    
260  /*  Other "pseudo"-machines:  */  /*  Other "pseudo"-machines:  */
261  #define MACHINE_NONE            0  #define MACHINE_NONE            0
# Line 313  struct machine { Line 289  struct machine {
289  #define MACHINE_HPCMIPS_AGENDA_VR3              7  #define MACHINE_HPCMIPS_AGENDA_VR3              7
290  #define MACHINE_HPCMIPS_IBM_WORKPAD_Z50         8  #define MACHINE_HPCMIPS_IBM_WORKPAD_Z50         8
291    
292  /*  Playstation 2:  */  /*  HPCarm:  */
293  #define PLAYSTATION2_BDA        0xffffffffa0001000ULL  #define MACHINE_HPCARM_IPAQ                     1
294  #define PLAYSTATION2_OPTARGS    0xffffffff81fff100ULL  #define MACHINE_HPCARM_JORNADA720               2
295  #define PLAYSTATION2_SIFBIOS    0xffffffffbfc10000ULL  
296    /*  HPCsh:  */
297    #define MACHINE_HPCSH_JORNADA680                1
298    #define MACHINE_HPCSH_JORNADA690                2
299    
300  /*  SGI and ARC:  */  /*  SGI and ARC:  */
301  #define MACHINE_ARC_NEC_RD94            1  #define MACHINE_ARC_JAZZ_PICA           1
302  #define MACHINE_ARC_JAZZ_PICA           2  #define MACHINE_ARC_JAZZ_MAGNUM         2
303  #define MACHINE_ARC_NEC_R94             3  
304  #define MACHINE_ARC_DESKTECH_TYNE       4  /*  Algor:  */
305  #define MACHINE_ARC_JAZZ_MAGNUM         5  #define MACHINE_ALGOR_P4032             1
306  #define MACHINE_ARC_NEC_R98             6  #define MACHINE_ALGOR_P5064             2
 #define MACHINE_ARC_JAZZ_M700           7  
 #define MACHINE_ARC_NEC_R96             8  
307    
308  /*  EVBMIPS:  */  /*  EVBMIPS:  */
309  #define MACHINE_EVBMIPS_MALTA           1  #define MACHINE_EVBMIPS_MALTA           1
310  #define MACHINE_EVBMIPS_PB1000          2  #define MACHINE_EVBMIPS_MALTA_BE        2
311    
312    /*  PReP:  */
313    #define MACHINE_PREP_IBM6050            1
314    #define MACHINE_PREP_MVME2400           2
315    
316    /*  Sun SPARC:  */
317    #define MACHINE_SPARC_SS5               1
318    #define MACHINE_SPARC_SS20              2
319    #define MACHINE_SPARC_ULTRA1            3
320    #define MACHINE_SPARC_ULTRA60           4
321    #define MACHINE_SPARC_SUN4V             5
322    
323  /*  MacPPC:  TODO: Real model names  */  /*  MacPPC:  TODO: Real model names  */
324  #define MACHINE_MACPPC_G4               1  #define MACHINE_MACPPC_G3               1
325  #define MACHINE_MACPPC_G5               2  #define MACHINE_MACPPC_G4               2
326    #define MACHINE_MACPPC_G5               3
327    
328    /*  MVMEPPC  */
329    #define MACHINE_MVMEPPC_1600            1
330    #define MACHINE_MVMEPPC_2100            2
331    #define MACHINE_MVMEPPC_5500            3
332    
333    /*  MVME88K  */
334    #define MACHINE_MVME88K_187             1
335    #define MACHINE_MVME88K_188             2
336    #define MACHINE_MVME88K_197             3
337    
338    
339    /*  For the automachine system:  */
340    struct machine_entry_subtype {
341            int                     machine_subtype;/*  Old-style subtype  */
342            const char              *name;          /*  Official name  */
343            int                     n_aliases;
344            char                    **aliases;      /*  Aliases  */
345    };
346    
347  /*  X86:  */  struct machine_entry {
348  #define MACHINE_X86_GENERIC             1          struct machine_entry    *next;
 #define MACHINE_X86_XT                  2  
349    
350            /*  Machine type:  */
351            int                     arch;
352            int                     machine_type;   /*  Old-style type  */
353            const char              *name;          /*  Official name  */
354            int                     n_aliases;
355            char                    **aliases;      /*  Aliases  */
356    
357            void                    (*setup)(struct machine *, struct cpu *);
358            void                    (*set_default_cpu)(struct machine *);
359            void                    (*set_default_ram)(struct machine *);
360    
361            /*  Machine subtypes:  */
362            int                     n_subtypes;
363            struct machine_entry_subtype **subtype;
364    };
365    
366  /*  #define MACHINE_SETUP_TYPE(n)   void (*n)(struct machine *, struct cpu *)
367   *  Problem: kernels seem to be loaded at low addresses in RAM, so  #define MACHINE_SETUP(x)        void machine_setup_ ## x(struct machine *machine, \
368   *  storing environment strings and memory descriptors there is a bad                                      struct cpu *cpu)
369   *  idea. They are stored at 0xbfc..... instead.  The ARC SPB must  #define MACHINE_DEFAULT_CPU(x)  void machine_default_cpu_ ## x(struct machine *machine)
370   *  be at physical address 0x1000 though.  #define MACHINE_DEFAULT_RAM(x)  void machine_default_ram_ ## x(struct machine *machine)
371   */  #define MACHINE_REGISTER(x)     void machine_register_ ## x(void)
372  #define SGI_SPB_ADDR            0xffffffff80001000ULL  #define MR_DEFAULT(x,name,arch,type) struct machine_entry               \
373  /*  0xbfc10000 is firmware callback vector stuff  */              *me = machine_entry_new(name,arch,type);                    \
374  #define ARC_FIRMWARE_VECTORS    0xffffffffbfc80000ULL          me->setup = machine_setup_ ## x;                                \
375  #define ARC_FIRMWARE_ENTRIES    0xffffffffbfc88000ULL          me->set_default_cpu = machine_default_cpu_ ## x;                \
376  #define ARC_ARGV_START          0xffffffffbfc90000ULL          machine_entry_register(me, arch);
377  #define ARC_ENV_STRINGS         0xffffffffbfc98000ULL  void automachine_init(void);
 #define ARC_ENV_POINTERS        0xffffffffbfc9d000ULL  
 #define SGI_SYSID_ADDR          0xffffffffbfca1800ULL  
 #define ARC_DSPSTAT_ADDR        0xffffffffbfca1c00ULL  
 #define ARC_MEMDESC_ADDR        0xffffffffbfca1c80ULL  
 #define ARC_CONFIG_DATA_ADDR    0xffffffffbfca2000ULL  
 #define FIRST_ARC_COMPONENT     0xffffffffbfca8000ULL  
 #define ARC_PRIVATE_VECTORS     0xffffffffbfcb0000ULL  
 #define ARC_PRIVATE_ENTRIES     0xffffffffbfcb8000ULL  
378    
379    
380  /*  machine.c:  */  /*  machine.c:  */
381  struct machine *machine_new(char *name, struct emul *emul);  struct machine *machine_new(char *name, struct emul *emul, int id);
382    void machine_destroy(struct machine *machine);
383  int machine_name_to_type(char *stype, char *ssubtype,  int machine_name_to_type(char *stype, char *ssubtype,
384          int *type, int *subtype, int *arch);          int *type, int *subtype, int *arch);
385    void machine_add_breakpoint_string(struct machine *machine, char *str);
386  void machine_add_tickfunction(struct machine *machine,  void machine_add_tickfunction(struct machine *machine,
387          void (*func)(struct cpu *, void *), void *extra, int clockshift);          void (*func)(struct cpu *, void *), void *extra, int clockshift);
388  void dump_mem_string(struct cpu *cpu, uint64_t addr);  void machine_statistics_init(struct machine *, char *fname);
389  void store_string(struct cpu *cpu, uint64_t addr, char *s);  void machine_register(char *name, MACHINE_SETUP_TYPE(setup));
 int store_64bit_word(struct cpu *cpu, uint64_t addr, uint64_t data64);  
 int store_32bit_word(struct cpu *cpu, uint64_t addr, uint64_t data32);  
 int store_16bit_word(struct cpu *cpu, uint64_t addr, uint64_t data16);  
 void store_byte(struct cpu *cpu, uint64_t addr, uint8_t data);  
 void store_64bit_word_in_host(struct cpu *cpu, unsigned char *data,  
         uint64_t data32);  
 void store_32bit_word_in_host(struct cpu *cpu, unsigned char *data,  
         uint64_t data32);  
 void store_16bit_word_in_host(struct cpu *cpu, unsigned char *data,  
         uint16_t data16);  
 uint32_t load_32bit_word(struct cpu *cpu, uint64_t addr);  
 uint16_t load_16bit_word(struct cpu *cpu, uint64_t addr);  
 void store_buf(struct cpu *cpu, uint64_t addr, char *s, size_t len);  
390  void machine_setup(struct machine *);  void machine_setup(struct machine *);
391  void machine_memsize_fix(struct machine *);  void machine_memsize_fix(struct machine *);
392  void machine_default_cputype(struct machine *);  void machine_default_cputype(struct machine *);
393  void machine_dumpinfo(struct machine *);  void machine_dumpinfo(struct machine *);
394    int machine_run(struct machine *machine);
395  void machine_list_available_types_and_cpus(void);  void machine_list_available_types_and_cpus(void);
396    struct machine_entry *machine_entry_new(const char *name,
397            int arch, int oldstyle_type);
398    void machine_entry_add_alias(struct machine_entry *me, const char *name);
399    void machine_entry_add_subtype(struct machine_entry *me, const char *name,
400            int oldstyle_subtype, ...);
401    void machine_entry_register(struct machine_entry *me, int arch);
402  void machine_init(void);  void machine_init(void);
403    
404    

Legend:
Removed from v.10  
changed lines
  Added in v.42

  ViewVC Help
Powered by ViewVC 1.1.26