2019-05-19 16:51:43 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-07-11 18:33:42 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Josh Poimboeuf <jpoimboe@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* objtool orc:
|
|
|
|
*
|
|
|
|
* This command analyzes a .o file and adds .orc_unwind and .orc_unwind_ip
|
|
|
|
* sections to it, which is used by the in-kernel ORC unwinder.
|
|
|
|
*
|
|
|
|
* This command is a superset of "objtool check".
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "builtin.h"
|
2020-05-19 23:55:33 +03:00
|
|
|
#include "objtool.h"
|
2017-07-11 18:33:42 +03:00
|
|
|
|
|
|
|
static const char *orc_usage[] = {
|
|
|
|
"objtool orc generate [<options>] file.o",
|
|
|
|
"objtool orc dump file.o",
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
int cmd_orc(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
const char *objname;
|
|
|
|
|
|
|
|
argc--; argv++;
|
2017-12-30 23:43:31 +03:00
|
|
|
if (argc <= 0)
|
|
|
|
usage_with_options(orc_usage, check_options);
|
|
|
|
|
2017-07-11 18:33:42 +03:00
|
|
|
if (!strncmp(argv[0], "gen", 3)) {
|
|
|
|
argc = parse_options(argc, argv, check_options, orc_usage, 0);
|
|
|
|
if (argc != 1)
|
|
|
|
usage_with_options(orc_usage, check_options);
|
|
|
|
|
|
|
|
objname = argv[0];
|
|
|
|
|
2018-01-16 19:16:32 +03:00
|
|
|
return check(objname, true);
|
2017-07-11 18:33:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(argv[0], "dump")) {
|
|
|
|
if (argc != 2)
|
|
|
|
usage_with_options(orc_usage, check_options);
|
|
|
|
|
|
|
|
objname = argv[1];
|
|
|
|
|
|
|
|
return orc_dump(objname);
|
|
|
|
}
|
|
|
|
|
|
|
|
usage_with_options(orc_usage, check_options);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|