summaryrefslogtreecommitdiff
path: root/upb
AgeCommit message (Collapse)Author
2014-07-29Added UPB_UNTRACKED_REF and some more handler overload options.Josh Haberman
2014-07-24Sync from Google-internal development.Josh Haberman
2014-07-02Sync from internal Google development.Josh Haberman
2014-06-26Sync from internal Google development.Josh Haberman
2014-02-04Sync from Google development.Josh Haberman
2014-01-21Sync to internal Google development.Josh Haberman
2013-12-20Sync from Google-internal development.Josh Haberman
2013-10-24Build fix for Mac OS X.Josh Haberman
2013-10-24Fixes to make the open-source build compile on Linux.Josh Haberman
2013-10-24Merge from Google-internal development:Josh Haberman
- rewritten decoder; interpreted decoder is bytecode-based, JIT decoder no longer falls back to the interpreter. - C++ improvements: C++11-compatible iterators, upb::reffed_ptr for RAII refcounting, better upcast/downcast support. - removed the gross upb_value abstraction from public upb.h.
2013-05-28Fix to compile on Linux.Josh Haberman
2013-05-28Fixes to compile on GCC 4.2, as shipped with XCode.Josh Haberman
2013-05-28Merge from Google-internal development.Josh Haberman
- Better error reporting for upb::Def setters. - error reporting for upb::Handlers setters. - made the start/endmsg handlers a little less special-cased.
2013-05-25Merge branch 'master' of github.com:haberman/upbJosh Haberman
Conflicts: upb/google/proto2.cc upb/handlers.h
2013-05-25Synced with Google-internal development.Josh Haberman
C++ handlers are now type-safe; SinkFrame is gone. Various other changes.
2013-05-11Open source fixes: builds on OS X again.Joshua Haberman
2013-05-11Synced with 3 months of Google-internal development.Josh Haberman
Major changes: - Got rid of all bytestream interfaces in favor of using regular handlers. - new Pipeline object represents a upb pipeline, does bump allocation internally to manage memory. - proto2 support now can handle extensions.
2013-02-15Sync with 8 months of Google-internal development.Josh Haberman
Many things have changed and been simplified. The memory-management story for upb_def and upb_handlers is much more robust; upb_def and upb_handlers should be fairly stable interfaces now. There is still much work to do for the runtime component (upb_sink).
2012-03-31Got decoder & textprinter compiling in kernel mode.Joshua Haberman
2012-03-31Sync from internal Google development.Joshua Haberman
2012-03-24Sync from internal Google development.Joshua Haberman
Many improvements, too many to mention. One significant perf regression warrants investigation: omitfp.parsetoproto2_googlemessage1.upb_jit: 343 -> 252 (-26.53) plain.parsetoproto2_googlemessage1.upb_jit: 334 -> 251 (-24.85) 25% regression for this benchmark is bad, but since I don't think there's any fundamental design issue that caused it I'm going to go ahead with the commit anyway. Can investigate and fix later. Other benchmarks were neutral or showed slight improvement.
2011-12-23Fixes to un-break "make descriptorgen"Joshua Haberman
2011-12-22Fixed the open-source build.Joshua Haberman
2011-12-22Sync with internal Google development.Joshua Haberman
This breaks the open-source build, will follow up with a change to fix it.
2011-11-23Refinement of upb_bytesrc interface.Joshua Haberman
Added a upb_byteregion that tracks a region of the input buffer; decoders use this instead of using a upb_bytesrc directly. upb_byteregion is also used as the way of passing a string to a upb_handlers callback. This symmetry makes decoders compose better; if you want to take a parsed string and decode it as something else, you can take the string directly from the callback and feed it as input to another parser. A commented-out version of a pinning interface is present; I decline to actually implement it (and accept its extra complexity) until/unless it is clear that it is actually a win. But it is included as a proof-of-concept, to show that it fits well with the existing interface.
2011-11-19Changes to get upb compiling inside Google.Joshua Haberman
2011-09-20Fixes to get upb to compile inside Google.Joshua Haberman
2011-09-20x86 JIT: now works without -NDNDEBUG (also small perf increase).Joshua Haberman
2011-09-20Small bugfix for x86->x64 rename.Joshua Haberman
2011-09-19Rename x86 -> x64, since JIT is x64-only.Joshua Haberman
2011-09-15x86 JIT: avoid storing pointer for every field.Joshua Haberman
2011-09-14Small typo fix.Joshua Haberman
2011-09-14x86 JIT: add easy switch between replicated/common dispatch.Joshua Haberman
2011-09-12Added an example, constified some more methods.Joshua Haberman
2011-09-12Fleshed out fielddef default functionality.Joshua Haberman
Fixes unit test submitted by Hunter Morris (thanks!).
2011-09-05Fix typo in handler.hWink Saville
Signed-off-by: Wink Saville <wink@saville.com>
2011-09-04Header tweaking.Joshua Haberman
2011-09-04Fleshed out C++ def wrappers some.Joshua Haberman
2011-09-04Const invasion: large parts of upb made const-correct.Joshua Haberman
2011-08-31Header cleanup, clarify/correct comments for interfaces.Joshua Haberman
2011-08-31Make "benchmark" build "benchmarks", add bug note.Joshua Haberman
2011-08-31Revised upb_bytesink, refactored upb_textprinter (untested).Joshua Haberman
2011-08-27Refined upb_status.Joshua Haberman
2011-08-27Add packed field support (untested).Joshua Haberman
2011-08-21Some progress on upb_stdio.Josh Haberman
It's still not correct, but it's closer.
2011-08-20Let the JIT emit hasbit-setting code in addition to calling a callback.Joshua Haberman
This leads to a major (20-40%) improvement in the parsetoproto2 benchmark with small messages. We now are faster than proto2 in all apples-to-apples comparisons, at least given the (admittedly limited) set of benchmarks in this source tree.
2011-08-20Fix stack alignment on OS X.Joshua Haberman
2011-08-20Prime the decoder buf for modest perf improvement on small messages.Joshua Haberman
2011-08-20Some Makefile cleanup.Joshua Haberman
2011-08-19More cleanup.Joshua Haberman
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback