Skip to main content
summaryrefslogblamecommitdiffstats
blob: e2015875da7ff7a582deb7e9c90c3e001ee3fd1f (plain) (tree)



























                                                                                 



                                   
                                                                        


                                                                         


                                                                                         
                                                                                             





                                                                                         
/*******************************************************************************
 * Copyright (c) 2013 Xilinx, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v1.0 which accompany this distribution.
 * The Eclipse Public License is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 * You may elect to redistribute this code under either of these licenses.
 *
 * Contributors:
 *     Xilinx - initial API and implementation
 *******************************************************************************/

#ifndef D_disassembly
#define D_disassembly

#include <tcf/config.h>
#include <tcf/framework/cpudefs.h>
#include <tcf/framework/protocol.h>

typedef struct {
    const char * text;
    ContextAddress size;
    int incomplete;
} DisassemblyResult;

/*
 * Parameters to a disassembler.
 */
typedef struct DisassemblerParams {
    Context * ctx;      /* Debug context to be used to lookup symbols */
    int big_endian;     /* 0 - little endian, 1 -  big endian */
    int simplified;     /* If true, simplified mnemonics are specified */
    int pseudo_instr;   /* If true, pseudo-instructions are requested */
} DisassemblerParams;

typedef DisassemblyResult * Disassembler(uint8_t * /* code */, ContextAddress /* addr */,
                                ContextAddress /* size */, DisassemblerParams * /* param */);

extern void add_disassembler(Context * ctx, const char * isa, Disassembler disassembler);

extern void ini_disassembly_service(Protocol * proto);

#endif /* D_disassembly */

Back to the top