summaryrefslogtreecommitdiff
path: root/src/bytecode/bytecode.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-10-25 01:24:03 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-10-25 01:24:03 +0000
commit5caf9a56956f55b70d937cea7e135417bada7b25 (patch)
tree1fec329c7b8133c3ef4b76b18ae48fb161f94c71 /src/bytecode/bytecode.h
parentc8e73871f9006987983fd1010d97b6168c13f6a3 (diff)
downloadlibcss-5caf9a56956f55b70d937cea7e135417bada7b25.tar.gz
libcss-5caf9a56956f55b70d937cea7e135417bada7b25.tar.bz2
A bunch of property parsers.
Split out !important parsing into a separate function. Support for dumping bytecode to a file handle in some kind of human-readable format. Strings can be represented in the bytecode as a pointer, length pair rather than embedding the string data into the bytecode -- all strings are interned by the core syntax parser. Add todo relating to early destruction of parser object (it shouldn't be needed once parsing is complete). Note documented issue surrounding interned string dictionary, however. In general, it seems wasteful to create a new dictionary containing string representations of keywords for every single parser instance. It would be better to have one central (statically allocated?) dictionary for this and then each parser instance can have a smaller dictionary containing any unknown strings contained within the stylesheet being parsed (e.g. string constants or URLs). svn path=/trunk/libcss/; revision=5627
Diffstat (limited to 'src/bytecode/bytecode.h')
-rw-r--r--src/bytecode/bytecode.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bytecode/bytecode.h b/src/bytecode/bytecode.h
index 2db3138..86019d1 100644
--- a/src/bytecode/bytecode.h
+++ b/src/bytecode/bytecode.h
@@ -9,6 +9,7 @@
#define css_bytecode_bytecode_h_
#include <inttypes.h>
+#include <stdio.h>
#include <libcss/types.h>
@@ -163,6 +164,8 @@ static inline bool isInherit(uint32_t OPV)
return getFlags(OPV) & 0x2;
}
+void css_bytecode_dump(void *bytecode, uint32_t length, FILE *fp);
+
#endif