Skip to content

Commit

Permalink
deps: update candor and libuv
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny committed Nov 21, 2012
1 parent 52093d7 commit f99664b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/candor
Submodule candor updated 97 files
+1 −0 .gitignore
+7 −1 Makefile
+4 −0 candor.gyp
+3 −3 common.gypi
+31 −8 include/candor.h
+60 −27 src/api.cc
+24 −2 src/api.h
+25 −3 src/assembler-inl.h
+25 −3 src/assembler.h
+58 −29 src/ast.h
+30 −9 src/can.cc
+78 −34 src/code-space.cc
+29 −8 src/code-space.h
+30 −9 src/cpu.cc
+25 −3 src/cpu.h
+184 −0 src/fullgen-inl.h
+94 −0 src/fullgen-instructions-inl.h
+89 −0 src/fullgen-instructions.cc
+475 −0 src/fullgen-instructions.h
+832 −0 src/fullgen.cc
+136 −160 src/fullgen.h
+64 −37 src/gc.cc
+28 −6 src/gc.h
+26 −4 src/heap-inl.h
+134 −111 src/heap.cc
+42 −14 src/heap.h
+41 −17 src/hir-inl.h
+41 −9 src/hir-instructions-inl.h
+90 −67 src/hir-instructions.cc
+49 −22 src/hir-instructions.h
+123 −60 src/hir.cc
+46 −20 src/hir.h
+34 −12 src/ia32/assembler-ia32-inl.h
+92 −63 src/ia32/assembler-ia32.cc
+94 −72 src/ia32/assembler-ia32.h
+582 −0 src/ia32/fullgen-ia32.cc
+32 −10 src/ia32/lir-builder-ia32.cc
+70 −205 src/ia32/lir-ia32.cc
+25 −3 src/ia32/lir-ia32.h
+41 −14 src/ia32/macroassembler-ia32.cc
+27 −5 src/ia32/pic-ia32.cc
+246 −17 src/ia32/stubs-ia32.cc
+25 −3 src/ia32/stubs-ia32.h
+45 −25 src/lexer.cc
+28 −5 src/lexer.h
+39 −16 src/lir-inl.h
+29 −7 src/lir-instructions-inl.h
+24 −2 src/lir-instructions.cc
+67 −29 src/lir-instructions.h
+148 −149 src/lir.cc
+46 −26 src/lir.h
+183 −0 src/list.h
+31 −9 src/macroassembler-inl.h
+25 −3 src/macroassembler.cc
+35 −12 src/macroassembler.h
+290 −233 src/parser.cc
+41 −9 src/parser.h
+32 −8 src/pic.cc
+28 −7 src/pic.h
+49 −26 src/root.cc
+28 −6 src/root.h
+285 −261 src/runtime.cc
+31 −9 src/runtime.h
+26 −3 src/scope.cc
+43 −15 src/scope.h
+30 −7 src/source-map.cc
+29 −6 src/source-map.h
+229 −0 src/splay-tree.h
+39 −14 src/stubs.h
+110 −340 src/utils.h
+79 −10 src/visitor.cc
+45 −5 src/visitor.h
+38 −16 src/x64/assembler-x64-inl.h
+97 −75 src/x64/assembler-x64.cc
+120 −98 src/x64/assembler-x64.h
+548 −0 src/x64/fullgen-x64.cc
+32 −10 src/x64/lir-builder-x64.cc
+66 −202 src/x64/lir-x64.cc
+25 −3 src/x64/lir-x64.h
+42 −15 src/x64/macroassembler-x64.cc
+27 −5 src/x64/pic-x64.cc
+242 −12 src/x64/stubs-x64.cc
+25 −3 src/x64/stubs-x64.h
+32 −4 src/zone.cc
+37 −9 src/zone.h
+1 −1 test/test-api.cc
+214 −0 test/test-fullgen.cc
+0 −87 test/test-functional.cc
+44 −42 test/test-hir.cc
+66 −59 test/test-lir.cc
+99 −0 test/test-list.cc
+4 −1 test/test-list.h
+51 −0 test/test-splaytree.cc
+13 −8 test/test.cc
+3 −0 test/test.gyp
+29 −2 test/test.h
+382 −0 tools/presubmit.py
2 changes: 1 addition & 1 deletion deps/uv
Submodule uv updated 79 files
+0 −3 LICENSE
+2 −2 README.md
+2 −17 config-unix.mk
+0 −283 include/uv-private/ev-proto.h
+0 −593 include/uv-private/ev.h
+1 −3 include/uv-private/uv-bsd.h
+1 −3 include/uv-private/uv-darwin.h
+17 −12 include/uv-private/uv-unix.h
+15 −17 include/uv.h
+4 −7 src/unix/async.c
+116 −37 src/unix/core.c
+3 −0 src/unix/darwin.c
+0 −388 src/unix/ev/Changes
+0 −36 src/unix/ev/LICENSE
+0 −18 src/unix/ev/Makefile.am
+0 −771 src/unix/ev/Makefile.in
+0 −58 src/unix/ev/README
+0 −8,957 src/unix/ev/aclocal.m4
+0 −6 src/unix/ev/autogen.sh
+0 −1,526 src/unix/ev/config.guess
+0 −125 src/unix/ev/config.h.in
+0 −1,658 src/unix/ev/config.sub
+0 −122 src/unix/ev/config_aix.h
+0 −123 src/unix/ev/config_cygwin.h
+0 −122 src/unix/ev/config_darwin.h
+0 −120 src/unix/ev/config_freebsd.h
+0 −141 src/unix/ev/config_linux.h
+0 −120 src/unix/ev/config_netbsd.h
+0 −126 src/unix/ev/config_openbsd.h
+0 −122 src/unix/ev/config_sunos.h
+0 −13,037 src/unix/ev/configure
+0 −18 src/unix/ev/configure.ac
+0 −630 src/unix/ev/depcomp
+0 −816 src/unix/ev/ev++.h
+0 −5,311 src/unix/ev/ev.3
+0 −3,926 src/unix/ev/ev.c
+0 −5,243 src/unix/ev/ev.pod
+0 −266 src/unix/ev/ev_epoll.c
+0 −235 src/unix/ev/ev_kqueue.c
+0 −148 src/unix/ev/ev_poll.c
+0 −179 src/unix/ev/ev_port.c
+0 −310 src/unix/ev/ev_select.c
+0 −203 src/unix/ev/ev_vars.h
+0 −153 src/unix/ev/ev_win32.c
+0 −196 src/unix/ev/ev_wrap.h
+0 −402 src/unix/ev/event.c
+0 −170 src/unix/ev/event.h
+0 −294 src/unix/ev/install-sh
+0 −39 src/unix/ev/libev.m4
+0 −8,413 src/unix/ev/ltmain.sh
+0 −336 src/unix/ev/missing
+0 −111 src/unix/ev/mkinstalldirs
+18 −10 src/unix/freebsd.c
+5 −2 src/unix/fs.c
+4 −2 src/unix/fsevents.c
+39 −29 src/unix/internal.h
+231 −32 src/unix/kqueue.c
+8 −7 src/unix/linux/inotify.c
+165 −2 src/unix/linux/linux-core.c
+26 −13 src/unix/loop.c
+1 −1 src/unix/netbsd.c
+1 −1 src/unix/openbsd.c
+18 −22 src/unix/pipe.c
+14 −20 src/unix/poll.c
+1 −1 src/unix/process.c
+4 −5 src/unix/signal.c
+68 −77 src/unix/stream.c
+157 −6 src/unix/sunos.c
+32 −56 src/unix/tcp.c
+4 −2 src/unix/tty.c
+66 −72 src/unix/udp.c
+2 −1 test/benchmark-async-pummel.c
+2 −1 test/benchmark-async.c
+11 −0 test/benchmark-million-timers.c
+0 −4 test/benchmark-multi-accept.c
+3 −5 test/benchmark-pump.c
+7 −7 test/benchmark-udp-pummel.c
+1 −1 test/test-fs-event.c
+2 −23 uv.gyp

0 comments on commit f99664b

Please sign in to comment.