go/src/pkg
Dmitriy Vyukov e71d147750 runtime: fix mem profile when both large and small objects are allocated at the same stack
Currently small and large (size>rate) objects are merged into a single entry.
But rate adjusting is required only for small objects.
As a result pprof either incorrectly adjusts large objects
or does not adjust small objects.
With this change objects of different sizes are stored in different buckets.

LGTM=rsc
R=golang-codereviews, gobot, rsc
CC=golang-codereviews
https://golang.org/cl/59220049
2014-02-14 13:20:41 +04:00
..
archive archive/tar: support extended attributes 2014-02-13 20:08:30 +11:00
bufio all: use {bytes,strings}.NewReader instead of bytes.Buffers 2014-01-27 11:05:01 -08:00
builtin
bytes bytes: add test for Contains 2013-12-28 20:33:05 +11:00
compress all: use {bytes,strings}.NewReader instead of bytes.Buffers 2014-01-27 11:05:01 -08:00
container container/list: mark must be an element of the list 2014-02-13 16:43:52 -08:00
crypto crypto/rsa: explain random parameter for GenerateKey and GenerateMultiPrimeKey. 2014-02-13 15:56:48 -05:00
database/sql database/sql: fix test on 32-bit 2014-01-10 12:30:23 -08:00
debug debug/macho: Add support for opening fat/universal binaries. 2014-02-13 11:04:13 +11:00
encoding crypto/x509: Add certificate signature request (CSR) support. 2014-02-13 12:54:04 -05:00
errors
expvar expvar: sort maps, fix race 2014-01-20 09:59:23 -08:00
flag flag: remove unused FlagSet.exitOnError field 2013-12-17 23:18:12 -05:00
fmt fmt: fix bug printing large zero-padded hexadecimal 2014-01-16 09:48:23 -08:00
go cmd/go, go/build: support .m files 2014-02-13 10:11:44 -08:00
hash hash/fnv: fix overview link currently returning 404. 2014-01-06 10:34:24 -08:00
html html: add tests for UnescapeString edge cases 2013-12-18 10:20:25 -08:00
image image/gif: respect local color table transparency. 2013-12-18 15:10:40 -05:00
index/suffixarray
io io: clarify MultiReader documentation 2014-01-28 19:49:29 +11:00
log log: fix example (fix build) 2013-12-18 17:25:23 +11:00
math math/big: Optimise ARM assembler 2014-02-13 16:19:38 -08:00
mime all: use {bytes,strings}.NewReader instead of bytes.Buffers 2014-01-27 11:05:01 -08:00
net net: disable TestDNSThreadLimit even in non-short mode by default 2014-02-14 12:20:21 +09:00
os os/exec: use filepath.Base in Command 2014-02-07 12:30:30 +11:00
path all: add solaris build tags 2014-01-07 23:53:30 -05:00
reflect reflect: Remove imprecise techniques from channel/select operations. 2014-01-16 13:35:29 -08:00
regexp regexp: remove unnecessary sentence in doc comment. 2014-01-17 09:06:28 -08:00
runtime runtime: fix mem profile when both large and small objects are allocated at the same stack 2014-02-14 13:20:41 +04:00
sort all: fix a few spelling errors in source comments 2013-12-27 08:59:02 -08:00
strconv strconv: add tests for FormatBool and AppendBool 2013-12-27 08:40:14 -08:00
strings bytes, strings: improve Title test coverage by adding cases with underscore and unicode line separator 2013-12-20 23:19:32 -08:00
sync sync: support Pool under race detector 2014-01-25 20:11:16 +04:00
syscall syscall: fix system calls with misaligned arguments on freebsd/arm 2014-02-14 12:22:13 +09:00
testing testing: fix SkipNow and FailNow to avoid panic(nil) check 2014-01-22 16:34:02 -05:00
text text/tabwriter: improve panic backtraces 2014-02-04 10:19:02 -08:00
time time: use an alternative method of yielding during Overflow timer test 2014-02-02 16:05:07 +11:00
unicode unicode: delete appearance of unused LowerUpper term from comment 2014-01-31 15:10:18 -08:00
unsafe