Deleted Added
full compact
db_disasm.c (266354) db_disasm.c (266449)
1/*-
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

--- 11 unchanged lines hidden (view full) ---

20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 */
26
27#include <sys/cdefs.h>
1/*-
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the

--- 11 unchanged lines hidden (view full) ---

20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/amd64/amd64/db_disasm.c 266354 2014-05-17 21:10:03Z jhb $");
28__FBSDID("$FreeBSD: head/sys/amd64/amd64/db_disasm.c 266449 2014-05-19 18:07:37Z jhb $");
29
30/*
31 * Instruction disassembler.
32 */
33#include <sys/param.h>
34#include <sys/libkern.h>
35
36#include <ddb/ddb.h>

--- 1349 unchanged lines hidden (view full) ---

1386 i_size = NONE;
1387 i_mode = 0;
1388 break;
1389 case 0xd1:
1390 i_name = "xsetbv";
1391 i_size = NONE;
1392 i_mode = 0;
1393 break;
29
30/*
31 * Instruction disassembler.
32 */
33#include <sys/param.h>
34#include <sys/libkern.h>
35
36#include <ddb/ddb.h>

--- 1349 unchanged lines hidden (view full) ---

1386 i_size = NONE;
1387 i_mode = 0;
1388 break;
1389 case 0xd1:
1390 i_name = "xsetbv";
1391 i_size = NONE;
1392 i_mode = 0;
1393 break;
1394 case 0xd8:
1395 i_name = "vmrun";
1396 i_size = NONE;
1397 i_mode = 0;
1398 break;
1399 case 0xd9:
1400 i_name = "vmmcall";
1401 i_size = NONE;
1402 i_mode = 0;
1403 break;
1404 case 0xda:
1405 i_name = "vmload";
1406 i_size = NONE;
1407 i_mode = 0;
1408 break;
1409 case 0xdb:
1410 i_name = "vmsave";
1411 i_size = NONE;
1412 i_mode = 0;
1413 break;
1414 case 0xdc:
1415 i_name = "stgi";
1416 i_size = NONE;
1417 i_mode = 0;
1418 break;
1419 case 0xdd:
1420 i_name = "clgi";
1421 i_size = NONE;
1422 i_mode = 0;
1423 break;
1424 case 0xde:
1425 i_name = "skinit";
1426 i_size = NONE;
1427 i_mode = 0;
1428 break;
1429 case 0xdf:
1430 i_name = "invlpga";
1431 i_size = NONE;
1432 i_mode = 0;
1433 break;
1394 case 0xf8:
1395 i_name = "swapgs";
1396 i_size = NONE;
1397 i_mode = 0;
1398 break;
1399 case 0xf9:
1400 i_name = "rdtscp";
1401 i_size = NONE;

--- 268 unchanged lines hidden ---
1434 case 0xf8:
1435 i_name = "swapgs";
1436 i_size = NONE;
1437 i_mode = 0;
1438 break;
1439 case 0xf9:
1440 i_name = "rdtscp";
1441 i_size = NONE;

--- 268 unchanged lines hidden ---