// SPDX-FileCopyrightText: 2014 jn // SPDX-FileCopyrightText: 2014 maijin // SPDX-License-Identifier: LGPL-3.0-only #include #include #include static int null_analysis(RzAnalysis *analysis, RzAnalysisOp *op, ut64 addr, const ut8 *data, int len, RzAnalysisOpMask mask) { /* This should better follow the disassembler */ return op->size = 1; } static char *null_get_reg_profile(RzAnalysis *analysis) { return strdup(""); } RzAnalysisPlugin rz_analysis_plugin_null = { .name = "null", .desc = "Fallback/Null analysis plugin", .arch = "none", .license = "LGPL3", .bits = 8 | 16 | 32 | 64, /* is this used? */ .op = &null_analysis, .get_reg_profile = &null_get_reg_profile, }; #ifndef RZ_PLUGIN_INCORE RZ_API RzLibStruct rizin_plugin = { .type = RZ_LIB_TYPE_ANALYSIS, .data = &rz_analysis_plugin_null, .version = RZ_VERSION }; #endif