114 lines
4.2 KiB
C
114 lines
4.2 KiB
C
|
/* udis86 - libudis86/extern.h
|
||
|
*
|
||
|
* Copyright (c) 2002-2009, 2013 Vivek Thampi
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* Redistribution and use in source and binary forms, with or without modification,
|
||
|
* are permitted provided that the following conditions are met:
|
||
|
*
|
||
|
* * Redistributions of source code must retain the above copyright notice,
|
||
|
* this list of conditions and the following disclaimer.
|
||
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
||
|
* this list of conditions and the following disclaimer in the documentation
|
||
|
* and/or other materials provided with the distribution.
|
||
|
*
|
||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
*/
|
||
|
#ifndef UD_EXTERN_H
|
||
|
#define UD_EXTERN_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#if defined(_MSC_VER) && defined(_USRDLL)
|
||
|
# ifdef LIBUDIS86_EXPORTS
|
||
|
# define LIBUDIS86_DLLEXTERN __declspec(dllexport)
|
||
|
# else
|
||
|
# define LIBUDIS86_DLLEXTERN __declspec(dllimport)
|
||
|
# endif
|
||
|
#else
|
||
|
# define LIBUDIS86_DLLEXTERN
|
||
|
#endif
|
||
|
|
||
|
/* ============================= PUBLIC API ================================= */
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_init(struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_mode(struct ud*, uint8_t);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_pc(struct ud*, uint64_t);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_input_hook(struct ud*, int (*)(struct ud*));
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_input_buffer(struct ud*, const uint8_t*, size_t);
|
||
|
|
||
|
#ifndef __UD_STANDALONE__
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_input_file(struct ud*, FILE*);
|
||
|
#endif /* __UD_STANDALONE__ */
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_vendor(struct ud*, unsigned);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_syntax(struct ud*, void (*)(struct ud*));
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_input_skip(struct ud*, size_t);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN int ud_input_end(const struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN unsigned int ud_decode(struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN unsigned int ud_disassemble(struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_translate_intel(struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_translate_att(struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN const char* ud_insn_asm(const struct ud* u);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN const uint8_t* ud_insn_ptr(const struct ud* u);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN uint64_t ud_insn_off(const struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN const char* ud_insn_hex(struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN unsigned int ud_insn_len(const struct ud* u);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN const struct ud_operand* ud_insn_opr(const struct ud *u, unsigned int n);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN int ud_opr_is_sreg(const struct ud_operand *opr);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN int ud_opr_is_gpr(const struct ud_operand *opr);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN enum ud_mnemonic_code ud_insn_mnemonic(const struct ud *u);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN const char* ud_lookup_mnemonic(enum ud_mnemonic_code c);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_user_opaque_data(struct ud*, void*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void* ud_get_user_opaque_data(const struct ud*);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_asm_buffer(struct ud *u, char *buf, size_t size);
|
||
|
|
||
|
extern LIBUDIS86_DLLEXTERN void ud_set_sym_resolver(struct ud *u,
|
||
|
const char* (*resolver)(struct ud*,
|
||
|
uint64_t addr,
|
||
|
int64_t *offset));
|
||
|
|
||
|
/* ========================================================================== */
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /* UD_EXTERN_H */
|