Home | History | Annotate | Line # | Download | only in aarch64
db_disasm.c revision 1.1.28.1
      1  1.1.28.1  pgoyette /* $NetBSD: db_disasm.c,v 1.1.28.1 2018/04/07 04:12:10 pgoyette Exp $ */
      2       1.1      matt 
      3  1.1.28.1  pgoyette /*
      4  1.1.28.1  pgoyette  * Copyright (c) 2017 Ryo Shimizu <ryo (at) nerv.org>
      5       1.1      matt  * All rights reserved.
      6       1.1      matt  *
      7       1.1      matt  * Redistribution and use in source and binary forms, with or without
      8       1.1      matt  * modification, are permitted provided that the following conditions
      9       1.1      matt  * are met:
     10       1.1      matt  * 1. Redistributions of source code must retain the above copyright
     11       1.1      matt  *    notice, this list of conditions and the following disclaimer.
     12       1.1      matt  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1      matt  *    notice, this list of conditions and the following disclaimer in the
     14       1.1      matt  *    documentation and/or other materials provided with the distribution.
     15       1.1      matt  *
     16  1.1.28.1  pgoyette  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.1.28.1  pgoyette  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     18  1.1.28.1  pgoyette  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     19  1.1.28.1  pgoyette  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     20  1.1.28.1  pgoyette  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     21  1.1.28.1  pgoyette  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     22  1.1.28.1  pgoyette  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.1.28.1  pgoyette  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     24  1.1.28.1  pgoyette  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     25  1.1.28.1  pgoyette  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26       1.1      matt  * POSSIBILITY OF SUCH DAMAGE.
     27       1.1      matt  */
     28       1.1      matt 
     29       1.1      matt #include <sys/cdefs.h>
     30  1.1.28.1  pgoyette __KERNEL_RCSID(0, "$NetBSD: db_disasm.c,v 1.1.28.1 2018/04/07 04:12:10 pgoyette Exp $");
     31  1.1.28.1  pgoyette 
     32  1.1.28.1  pgoyette #include <sys/param.h>
     33  1.1.28.1  pgoyette #include <machine/db_machdep.h>
     34  1.1.28.1  pgoyette #include <ddb/db_interface.h>
     35  1.1.28.1  pgoyette #include <ddb/db_sym.h>
     36  1.1.28.1  pgoyette #include <ddb/db_output.h>
     37  1.1.28.1  pgoyette #include <ddb/db_access.h>
     38  1.1.28.1  pgoyette 
     39  1.1.28.1  pgoyette #include <arch/aarch64/aarch64/disasm.h>
     40  1.1.28.1  pgoyette 
     41  1.1.28.1  pgoyette static uint32_t
     42  1.1.28.1  pgoyette db_disasm_readword(uintptr_t address)
     43  1.1.28.1  pgoyette {
     44  1.1.28.1  pgoyette 	return db_get_value(address, sizeof(uint32_t), false);
     45  1.1.28.1  pgoyette }
     46       1.1      matt 
     47  1.1.28.1  pgoyette static void
     48  1.1.28.1  pgoyette db_disasm_printaddr(uintptr_t address)
     49  1.1.28.1  pgoyette {
     50  1.1.28.1  pgoyette 	db_printf("%lx <", address);
     51  1.1.28.1  pgoyette 	db_printsym((db_addr_t)address, DB_STGY_ANY, db_printf);
     52  1.1.28.1  pgoyette 	db_printf(">");
     53  1.1.28.1  pgoyette }
     54       1.1      matt 
     55  1.1.28.1  pgoyette static const disasm_interface_t db_disasm_interface = {
     56  1.1.28.1  pgoyette 	.di_readword = db_disasm_readword,
     57  1.1.28.1  pgoyette 	.di_printaddr = db_disasm_printaddr,
     58  1.1.28.1  pgoyette 	.di_printf = db_printf
     59  1.1.28.1  pgoyette };
     60       1.1      matt 
     61  1.1.28.1  pgoyette db_addr_t
     62  1.1.28.1  pgoyette db_disasm(db_addr_t loc, bool altfmt)
     63  1.1.28.1  pgoyette {
     64  1.1.28.1  pgoyette 	return disasm(&db_disasm_interface, loc);
     65  1.1.28.1  pgoyette }
     66