2015-06-11 12:09:10 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2016-02-12 16:23:26 +00:00
|
|
|
Copyright (c) 2014-2016 Chung, Hyung-Hwan. All rights reserved.
|
2015-06-11 12:09:10 +00:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. 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 AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WAfRRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stix-prv.h"
|
|
|
|
|
2016-06-05 18:37:28 +00:00
|
|
|
void stix_dumpsymtab (stix_t* stix)
|
2015-06-11 12:09:10 +00:00
|
|
|
{
|
2016-06-05 18:37:28 +00:00
|
|
|
stix_oow_t i;
|
2015-06-11 12:09:10 +00:00
|
|
|
stix_oop_char_t symbol;
|
|
|
|
|
2016-06-05 18:37:28 +00:00
|
|
|
STIX_DEBUG0 (stix, "--------------------------------------------\n");
|
|
|
|
STIX_DEBUG1 (stix, "Stix Symbol Table %zu\n", STIX_OBJ_GET_SIZE(stix->symtab->bucket));
|
|
|
|
STIX_DEBUG0 (stix, "--------------------------------------------\n");
|
2015-06-11 12:09:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < STIX_OBJ_GET_SIZE(stix->symtab->bucket); i++)
|
|
|
|
{
|
|
|
|
symbol = (stix_oop_char_t)stix->symtab->bucket->slot[i];
|
2016-06-03 15:46:01 +00:00
|
|
|
if ((stix_oop_t)symbol != stix->_nil)
|
2015-06-11 12:09:10 +00:00
|
|
|
{
|
2016-06-05 18:37:28 +00:00
|
|
|
STIX_DEBUG2 (stix, " %07zu %O\n", i, symbol);
|
2015-06-11 12:09:10 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-05 18:37:28 +00:00
|
|
|
|
|
|
|
STIX_DEBUG0 (stix, "--------------------------------------------\n");
|
2015-06-11 12:09:10 +00:00
|
|
|
}
|
|
|
|
|
2016-06-05 18:37:28 +00:00
|
|
|
void stix_dumpdic (stix_t* stix, stix_oop_set_t dic, const stix_bch_t* title)
|
2015-06-11 12:09:10 +00:00
|
|
|
{
|
|
|
|
stix_oow_t i, j;
|
|
|
|
stix_oop_association_t ass;
|
|
|
|
|
2016-06-05 18:37:28 +00:00
|
|
|
STIX_DEBUG0 (stix, "--------------------------------------------\n");
|
|
|
|
STIX_DEBUG2 (stix, "%s %zu\n", title, STIX_OBJ_GET_SIZE(dic->bucket));
|
|
|
|
STIX_DEBUG0 (stix, "--------------------------------------------\n");
|
2015-06-11 12:09:10 +00:00
|
|
|
|
|
|
|
for (i = 0; i < STIX_OBJ_GET_SIZE(dic->bucket); i++)
|
|
|
|
{
|
|
|
|
ass = (stix_oop_association_t)dic->bucket->slot[i];
|
|
|
|
if ((stix_oop_t)ass != stix->_nil)
|
|
|
|
{
|
2016-06-05 18:37:28 +00:00
|
|
|
STIX_DEBUG2 (stix, " %07zu %O\n", i, ass->key);
|
2015-06-11 12:09:10 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-05 18:37:28 +00:00
|
|
|
STIX_DEBUG0 (stix, "--------------------------------------------\n");
|
2015-06-11 12:09:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|