2009-06-29 08:25:15 +08:00
|
|
|
/* ----------------------------------------------------------------------- *
|
|
|
|
*
|
2014-11-26 04:07:43 +08:00
|
|
|
* Copyright 1996-2014 The NASM Authors - All Rights Reserved
|
2009-06-29 08:25:15 +08:00
|
|
|
* See the file AUTHORS included with the NASM distribution for
|
|
|
|
* the specific copyright holders.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following
|
|
|
|
* conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following
|
|
|
|
* disclaimer in the documentation and/or other materials provided
|
|
|
|
* with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* ----------------------------------------------------------------------- */
|
|
|
|
|
2009-06-28 13:07:33 +08:00
|
|
|
#include "nasm.h"
|
|
|
|
#include "nasmlib.h"
|
2016-05-26 03:06:29 +08:00
|
|
|
#include "outlib.h"
|
2009-06-28 13:07:33 +08:00
|
|
|
|
2009-07-19 09:07:17 +08:00
|
|
|
void null_debug_init(void)
|
2009-06-28 13:07:33 +08:00
|
|
|
{
|
|
|
|
}
|
2009-07-19 09:07:17 +08:00
|
|
|
|
2009-06-28 13:07:33 +08:00
|
|
|
void null_debug_linenum(const char *filename, int32_t linenumber, int32_t segto)
|
|
|
|
{
|
|
|
|
(void)filename;
|
|
|
|
(void)linenumber;
|
|
|
|
(void)segto;
|
|
|
|
}
|
2009-07-19 09:07:17 +08:00
|
|
|
|
2009-06-28 13:07:33 +08:00
|
|
|
void null_debug_deflabel(char *name, int32_t segment, int64_t offset,
|
|
|
|
int is_global, char *special)
|
|
|
|
{
|
|
|
|
(void)name;
|
|
|
|
(void)segment;
|
|
|
|
(void)offset;
|
|
|
|
(void)is_global;
|
|
|
|
(void)special;
|
|
|
|
}
|
2009-07-19 09:07:17 +08:00
|
|
|
|
2009-08-10 04:02:35 +08:00
|
|
|
void null_debug_directive(const char *directive, const char *params)
|
2009-06-28 13:07:33 +08:00
|
|
|
{
|
|
|
|
(void)directive;
|
|
|
|
(void)params;
|
|
|
|
}
|
2009-07-19 09:07:17 +08:00
|
|
|
|
2009-06-28 13:07:33 +08:00
|
|
|
void null_debug_typevalue(int32_t type)
|
|
|
|
{
|
|
|
|
(void)type;
|
|
|
|
}
|
2009-07-19 09:07:17 +08:00
|
|
|
|
2009-06-28 13:07:33 +08:00
|
|
|
void null_debug_output(int type, void *param)
|
|
|
|
{
|
|
|
|
(void)type;
|
|
|
|
(void)param;
|
|
|
|
}
|
2009-07-19 09:07:17 +08:00
|
|
|
|
2009-06-28 13:07:33 +08:00
|
|
|
void null_debug_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-02-18 18:16:36 +08:00
|
|
|
const struct dfmt null_debug_form = {
|
2019-08-10 17:28:17 +08:00
|
|
|
"Null",
|
2009-06-28 13:07:33 +08:00
|
|
|
"null",
|
|
|
|
null_debug_init,
|
|
|
|
null_debug_linenum,
|
|
|
|
null_debug_deflabel,
|
2020-08-26 06:52:05 +08:00
|
|
|
NULL, /* .debug_smacros */
|
|
|
|
NULL, /* .debug_include */
|
2020-07-15 03:05:03 +08:00
|
|
|
NULL, /* .debug_mmacros */
|
2009-08-10 04:02:35 +08:00
|
|
|
null_debug_directive,
|
2009-06-28 13:07:33 +08:00
|
|
|
null_debug_typevalue,
|
|
|
|
null_debug_output,
|
2017-03-08 13:32:37 +08:00
|
|
|
null_debug_cleanup,
|
|
|
|
NULL /* pragma list */
|
2009-06-28 13:07:33 +08:00
|
|
|
};
|
|
|
|
|
2016-02-18 18:16:36 +08:00
|
|
|
const struct dfmt * const null_debug_arr[2] = { &null_debug_form, NULL };
|