diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-29 23:29:23 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-29 23:31:56 -0700 |
commit | 3e364fe27482c09b33c85b401f601ba7ba5c48bb (patch) | |
tree | 0d1f05cb5b4329812d4888465e95fa1d1963f261 /Makefile.in | |
parent | 034b009e51fd564f912874f2a59549edc358cbca (diff) | |
download | nasm-3e364fe27482c09b33c85b401f601ba7ba5c48bb.tar.gz nasm-3e364fe27482c09b33c85b401f601ba7ba5c48bb.tar.bz2 nasm-3e364fe27482c09b33c85b401f601ba7ba5c48bb.zip |
Left-leaning red-black tree data structure
Implement library functions for "left-leaning red-black trees" with
uint64_t keys. This is meant for looking up symbols by address in the
backends that need to do so, e.g. ELF.
A good question is if there is a better way to do this, that recovers
the original symbol, but that's a future issue.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 06f51b8..efefe96 100644 --- a/Makefile.in +++ b/Makefile.in @@ -59,7 +59,7 @@ X = @EXEEXT@ $(NROFF) -man $< > $@ #-- Begin File Lists --# -NASM = nasm.$(O) nasmlib.$(O) raa.$(O) saa.$(O) \ +NASM = nasm.$(O) nasmlib.$(O) raa.$(O) saa.$(O) rbtree.$(O) \ float.$(O) insnsa.$(O) insnsb.$(O) \ assemble.$(O) labels.$(O) hashtbl.$(O) crc64.$(O) parser.$(O) \ outform.$(O) outlib.$(O) output/outbin.$(O) \ @@ -319,6 +319,7 @@ preproc.$(O): preproc.c compiler.h config.h hashtbl.h insnsi.h nasm.h \ version.h quote.$(O): quote.c compiler.h config.h nasmlib.h quote.h raa.$(O): raa.c compiler.h config.h nasmlib.h raa.h +rbtree.$(O): rbtree.c compiler.h config.h nasmlib.h rbtree.h regdis.$(O): regdis.c regdis.h regs.h regflags.$(O): regflags.c compiler.h config.h insnsi.h nasm.h nasmlib.h \ pptok.h preproc.h regs.h tables.h version.h |