1// Copyright (c) PLUMgrid, Inc. 2// Licensed under the Apache License, Version 2.0 (the "License") 3 4#packed "false" 5 6struct pt_regs { 7 u64 r15:64; 8 u64 r14:64; 9 u64 r13:64; 10 u64 r12:64; 11 u64 bp:64; 12 u64 bx:64; 13 u64 r11:64; 14 u64 r10:64; 15 u64 r9:64; 16 u64 r8:64; 17 u64 ax:64; 18 u64 cx:64; 19 u64 dx:64; 20 u64 si:64; 21 u64 di:64; 22}; 23 24 25