2011-03-15 19:15:42 +01:00
|
|
|
/* libunwind - a platform-independent unwind library
|
|
|
|
Copyright 2011 Linaro Limited
|
|
|
|
|
|
|
|
This file is part of libunwind.
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
|
|
|
|
#ifndef ARM_EX_TABLES_H
|
|
|
|
#define ARM_EX_TABLES_H
|
|
|
|
|
|
|
|
typedef enum arm_exbuf_cmd {
|
|
|
|
ARM_EXIDX_CMD_FINISH,
|
|
|
|
ARM_EXIDX_CMD_DATA_PUSH,
|
|
|
|
ARM_EXIDX_CMD_DATA_POP,
|
|
|
|
ARM_EXIDX_CMD_REG_POP,
|
|
|
|
ARM_EXIDX_CMD_REG_TO_SP,
|
|
|
|
ARM_EXIDX_CMD_VFP_POP,
|
|
|
|
ARM_EXIDX_CMD_WREG_POP,
|
|
|
|
ARM_EXIDX_CMD_WCGR_POP,
|
|
|
|
ARM_EXIDX_CMD_RESERVED,
|
|
|
|
ARM_EXIDX_CMD_REFUSED,
|
|
|
|
} arm_exbuf_cmd_t;
|
|
|
|
|
2011-03-23 16:54:59 +01:00
|
|
|
struct arm_exbuf_data
|
|
|
|
{
|
2011-03-15 19:15:42 +01:00
|
|
|
arm_exbuf_cmd_t cmd;
|
|
|
|
uint32_t data;
|
|
|
|
};
|
|
|
|
|
2011-04-01 18:41:16 +02:00
|
|
|
#define arm_exidx_extract UNW_OBJ(arm_exidx_extract)
|
|
|
|
#define arm_exidx_decode UNW_OBJ(arm_exidx_decode)
|
|
|
|
#define arm_exidx_apply_cmd UNW_OBJ(arm_exidx_apply_cmd)
|
2011-03-15 19:15:42 +01:00
|
|
|
|
2011-07-20 09:57:57 +02:00
|
|
|
int arm_exidx_extract (struct dwarf_cursor *c, uint8_t *buf);
|
2011-03-23 16:55:01 +01:00
|
|
|
int arm_exidx_decode (const uint8_t *buf, uint8_t len, struct dwarf_cursor *c);
|
2011-03-23 16:54:59 +01:00
|
|
|
int arm_exidx_apply_cmd (struct arm_exbuf_data *edata, struct dwarf_cursor *c);
|
2011-03-15 19:15:42 +01:00
|
|
|
|
|
|
|
#endif // ARM_EX_TABLES_H
|