~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/pkg/runtime/defs_plan9_amd64.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-08-20 14:06:23 UTC
  • mfrom: (14.1.23 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130820140623-b414jfxi3m0qkmrq
Tags: 2:1.1.2-2ubuntu1
* Merge from Debian unstable (LP: #1211749, #1202027). Remaining changes:
  - 016-armhf-elf-header.patch: Use correct ELF header for armhf binaries.
  - d/control,control.cross: Update Breaks/Replaces for Ubuntu
    versions to ensure smooth upgrades, regenerate control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#define PAGESIZE 0x200000ULL
 
2
 
 
3
typedef struct Ureg Ureg;
 
4
 
 
5
struct Ureg {
 
6
        uint64  ax;
 
7
        uint64  bx;
 
8
        uint64  cx;
 
9
        uint64  dx;
 
10
        uint64  si;
 
11
        uint64  di;
 
12
        uint64  bp;
 
13
        uint64  r8;
 
14
        uint64  r9;
 
15
        uint64  r10;
 
16
        uint64  r11;
 
17
        uint64  r12;
 
18
        uint64  r13;
 
19
        uint64  r14;
 
20
        uint64  r15;
 
21
 
 
22
        uint16  ds;
 
23
        uint16  es;
 
24
        uint16  fs;
 
25
        uint16  gs;
 
26
 
 
27
        uint64  type;
 
28
        uint64  error;                          /* error code (or zero) */
 
29
        uint64  ip;                             /* pc */
 
30
        uint64  cs;                             /* old context */
 
31
        uint64  flags;                          /* old flags */
 
32
        uint64  sp;                             /* sp */
 
33
        uint64  ss;                             /* old stack segment */
 
34
};