proto, internal/impl: don't create fast path Size for legacy Marshalers

Implementations of the legacy Marshaler type have no way to efficiently
compute the size of the message. Rather than generating an inefficient
fast-path Size method which marshals the message and examines the
length of the result, don't generate a fast-path at all.

Drop the requirement that a fast-path MarshalAppend requires a
corresponding Size.

Avoids O(N^2) behavior when marshaling a legacy Marshaler that
recursively calls proto.Marshal.

Change-Id: I4793cf32275d08f29c8e1a1a44a193d9a5724058
Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/213443
Reviewed-by: Joe Tsai <joetsai@google.com>
diff --git a/runtime/protoiface/methods.go b/runtime/protoiface/methods.go
index e0adf9d..b7ba129 100644
--- a/runtime/protoiface/methods.go
+++ b/runtime/protoiface/methods.go
@@ -34,7 +34,7 @@
 	Size func(m protoreflect.Message, opts MarshalOptions) int
 
 	// MarshalAppend appends the wire-format encoding of m to b, returning the result.
-	// Size must be provided if a custom MarshalAppend is provided.
+	// Size should be provided if a custom MarshalAppend is provided.
 	// It must not perform required field checks.
 	MarshalAppend func(b []byte, m protoreflect.Message, opts MarshalOptions) ([]byte, error)