summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2013-10-24 12:43:19 -0700
committerJosh Haberman <jhaberman@gmail.com>2013-10-24 12:43:19 -0700
commit26d98ca94f2f049e8767b4a9a33d185a3d7ea0fd (patch)
tree340bcf495f06ed05c9f3fb423f210caf4edce2b1 /benchmarks
parent61109fca1f967771c21dc7184aee35f3b439c577 (diff)
Merge from Google-internal development:
- 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.
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/google_messages.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/benchmarks/google_messages.proto b/benchmarks/google_messages.proto
index b367954..489c470 100644
--- a/benchmarks/google_messages.proto
+++ b/benchmarks/google_messages.proto
@@ -8,6 +8,13 @@ enum Foo {
FOO_VALUE2 = 2;
}
+message Simple {
+ message M2 {
+ optional int32 f1 = 1234567;
+ }
+ optional M2 m2 = 1;
+}
+
message SpeedMessage1 {
required string field1 = 1;
optional string field9 = 9;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback