Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Issue 9311003: Update the tcmalloc chromium branch to r144 (gperftools 2.0), and merge chromium-specific changes. (Closed)

Created:
8 years, 10 months ago by Dai Mikurube (NOT FULLTIME)
Modified:
8 years, 9 months ago
CC:
chromium-reviews, Aaron Boodman, mihaip+watch_chromium.org, kinuko
Visibility:
Public.

Description

Update the tcmalloc chromium branch to r144 (gperftools 2.0), and merge chromium-specific changes. The major reason for us is to enable a fix for HEAP_PROFILE_MMAP. This change merges tcmalloc r144 (gperftools 2.0 f.k.a. google-perftools) with the tcmalloc/chromium branch, which is the forked Chromium version of tcmalloc. The change is created by 3-way merge from 1) the original google-perftools r109 ( = vendor base), 2) the original gperftools 2.0 r144 ( = branch), and 3) the chromium branch ( = another branch) with the following additional changes : * base/allocator/allocator.gyp is modified. * Many [#include "third_party/tcmalloc/chromium/src/google/..."] are replaced with "gperftools/". (Many files in Chromium) * gperftools/tcmalloc.h (formerly google/tcmalloc.h) is replaced with the original (generated) one. * windows/gperftools/tcmalloc.h (formerly windows/google/tcmalloc.h) is replaced with the original (generated) one. * malloc_hook-like functions are moved to libc_override*.h in gperftools 2.0. Some changes due to it. * MALLOC_HOOK_MAYBE_VOLATILE is redefined using __MALLOC_HOOK_VOLATILE. (config.h, tcmalloc.cc and libc_override_glibc.h) * The macro "CRASH(...)" is replaced with "Log(kCrash, __FILE__, __LINE__, ...)". (Many files) * LARGE_PAGE-related parameters (which may affect performance?) are merged. (common.h) * RAW_VLOG() calls are removed. (base/googleinit.h) * sys_{mmap|munmap|mremap}(...) calls are tentatively replaced with syscall(SYS_{mmap|munmap|mremap}, ...). (malloc_hook_mmap_linux.h) * tc_mallinfo is declared only when HAVE_STRUCT_MALLINFO is defined. (gperftools/tcmalloc.h) * "libc_override_redefine.h" is not included in Windows. (libc_override.h) * Chromium-original "sys_alloc" is not declared. (windows/port.cc) * base/spinlock_win32-inl.h is reverted from r144 because 64-bit atomicops are not implemented on Windows. (base/atomicops-internals-windows.h) The vendor branch is updated in another change. BUG=114302 TEST=run all existing tests. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=124832

Patch Set 1 #

Patch Set 2 : Fixed. #

Total comments: 7

Patch Set 3 : Reverted base/spinlock_win32-inl.h. #

Patch Set 4 : Added comments on Chromium-original changes. #

Patch Set 5 : Rebased. #

Total comments: 13

Patch Set 6 : Reflected Jim's comments, and rebased. #

Patch Set 7 : Fix how to call FL_Next() in "memory corruption" check. #

Patch Set 8 : Rebasec #

Unified diffs Side-by-side diffs Delta from patch set Stats (+6132 lines, -5871 lines) Patch
M base/allocator/allocator.gyp View 1 2 3 4 11 chunks +41 lines, -21 lines 0 comments Download
M base/debug/leak_annotations.h View 1 1 chunk +1 line, -1 line 0 comments Download
M base/debug/profiler.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/browser_about_handler.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/chromeos/status/memory_menu_button.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/memory_purger.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/ui/webui/about_ui.cc View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M chrome/renderer/chrome_render_process_observer.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M content/browser/zygote_host_impl_linux.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M content/renderer/render_thread_impl.cc View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
D third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-gcc.h View 1 1 chunk +0 lines, -234 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-generic.h View 1 chunk +1 line, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/atomicops-internals-arm-v6plus.h View 4 chunks +140 lines, -16 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/atomicops-internals-windows.h View 7 chunks +107 lines, -20 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/basictypes.h View 3 chunks +24 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/cycleclock.h View 4 chunks +31 lines, -8 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/dynamic_annotations.h View 3 chunks +22 lines, -16 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/dynamic_annotations.c View 3 chunks +16 lines, -2 lines 0 comments Download
A third_party/tcmalloc/chromium/src/base/elf_mem_image.h View 1 chunk +134 lines, -0 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/base/elf_mem_image.cc View 13 chunks +35 lines, -165 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/googleinit.h View 1 2 3 4 5 1 chunk +40 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/linux_syscall_support.h View 1 40 chunks +268 lines, -1107 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/logging.h View 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/low_level_alloc.cc View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_internal.cc View 2 chunks +25 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_linux-inl.h View 2 chunks +3 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_posix-inl.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/base/spinlock_win32-inl.h View 1 2 3 4 5 1 chunk +7 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/stl_allocator.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/sysinfo.cc View 1 chunk +10 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/vdso_support.h View 5 chunks +39 lines, -70 lines 0 comments Download
M third_party/tcmalloc/chromium/src/base/vdso_support.cc View 1 6 chunks +8 lines, -382 lines 0 comments Download
M third_party/tcmalloc/chromium/src/central_freelist.h View 5 chunks +27 lines, -11 lines 0 comments Download
M third_party/tcmalloc/chromium/src/central_freelist.cc View 8 chunks +43 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/common.h View 1 2 3 5 chunks +10 lines, -11 lines 0 comments Download
M third_party/tcmalloc/chromium/src/common.cc View 6 chunks +33 lines, -44 lines 0 comments Download
M third_party/tcmalloc/chromium/src/config.h View 1 1 chunk +0 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/config.h.in View 1 4 chunks +13 lines, -3 lines 0 comments Download
M third_party/tcmalloc/chromium/src/debugallocation.cc View 1 17 chunks +109 lines, -72 lines 0 comments Download
M third_party/tcmalloc/chromium/src/free_list.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/free_list.cc View 1 1 chunk +4 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/heap-checker.h View 1 1 chunk +4 lines, -389 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/heap-profiler.h View 1 1 chunk +3 lines, -73 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_extension.h View 1 1 chunk +4 lines, -356 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_extension_c.h View 1 1 chunk +3 lines, -56 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_hook.h View 1 1 chunk +4 lines, -316 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/malloc_hook_c.h View 1 1 chunk +3 lines, -142 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/profiler.h View 1 1 chunk +3 lines, -135 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/stacktrace.h View 1 1 chunk +4 lines, -87 lines 0 comments Download
M third_party/tcmalloc/chromium/src/google/tcmalloc.h View 1 1 chunk +33 lines, -68 lines 0 comments Download
D third_party/tcmalloc/chromium/src/google/tcmalloc.h.in View 1 1 chunk +0 lines, -123 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/heap-checker.h View 1 6 chunks +25 lines, -19 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/heap-profiler.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_extension.h View 1 3 chunks +22 lines, -7 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_extension_c.h View 1 2 chunks +16 lines, -4 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_hook.h View 1 3 chunks +14 lines, -1 line 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/malloc_hook_c.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/profiler.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/stacktrace.h View 1 0 chunks +-1 lines, --1 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h View 1 2 chunks +5 lines, -5 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/gperftools/tcmalloc.h.in View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/heap-checker.cc View 1 2 23 chunks +119 lines, -45 lines 0 comments Download
M third_party/tcmalloc/chromium/src/heap-checker-bcad.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/heap-profile-table.h View 7 chunks +59 lines, -21 lines 0 comments Download
M third_party/tcmalloc/chromium/src/heap-profile-table.cc View 1 14 chunks +151 lines, -56 lines 0 comments Download
M third_party/tcmalloc/chromium/src/heap-profiler.cc View 1 5 chunks +13 lines, -36 lines 0 comments Download
M third_party/tcmalloc/chromium/src/internal_logging.h View 1 chunk +54 lines, -52 lines 0 comments Download
M third_party/tcmalloc/chromium/src/internal_logging.cc View 1 1 chunk +113 lines, -39 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override.h View 1 2 3 1 chunk +94 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_gcc_and_weak.h View 1 1 chunk +99 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_glibc.h View 1 2 3 1 chunk +159 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_osx.h View 1 1 chunk +275 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/libc_override_redefine.h View 1 chunk +93 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/malloc_extension.cc View 1 6 chunks +28 lines, -15 lines 0 comments Download
M third_party/tcmalloc/chromium/src/malloc_hook.cc View 1 8 chunks +15 lines, -198 lines 0 comments Download
M third_party/tcmalloc/chromium/src/malloc_hook-inl.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
A third_party/tcmalloc/chromium/src/malloc_hook_mmap_freebsd.h View 1 chunk +165 lines, -0 lines 0 comments Download
A third_party/tcmalloc/chromium/src/malloc_hook_mmap_linux.h View 1 2 3 1 chunk +241 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/maybe_threads.cc View 2 chunks +20 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/memfs_malloc.cc View 1 8 chunks +61 lines, -54 lines 0 comments Download
M third_party/tcmalloc/chromium/src/memory_region_map.h View 2 chunks +9 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/memory_region_map.cc View 1 5 chunks +8 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/page_heap.h View 1 4 chunks +18 lines, -10 lines 0 comments Download
M third_party/tcmalloc/chromium/src/page_heap.cc View 1 2 chunks +12 lines, -90 lines 0 comments Download
M third_party/tcmalloc/chromium/src/page_heap_allocator.h View 1 3 chunks +9 lines, -7 lines 0 comments Download
M third_party/tcmalloc/chromium/src/pprof View 1 71 chunks +623 lines, -183 lines 0 comments Download
M third_party/tcmalloc/chromium/src/profile-handler.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/profile-handler.cc View 13 chunks +70 lines, -19 lines 0 comments Download
M third_party/tcmalloc/chromium/src/profiler.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/span.h View 1 chunk +0 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/span.cc View 1 chunk +0 lines, -10 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stack_trace_table.cc View 3 chunks +6 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace.cc View 1 2 chunks +7 lines, -6 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/stacktrace_arm-inl.h View 1 7 chunks +40 lines, -68 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_config.h View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_generic-inl.h View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_libunwind-inl.h View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_powerpc-inl.h View 1 4 chunks +10 lines, -13 lines 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_win32-inl.h View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_with_context.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/stacktrace_x86-inl.h View 1 2 chunks +9 lines, -4 lines 0 comments Download
D third_party/tcmalloc/chromium/src/stacktrace_x86_64-inl.h View 1 1 chunk +0 lines, -151 lines 0 comments Download
M third_party/tcmalloc/chromium/src/static_vars.h View 2 chunks +2 lines, -7 lines 0 comments Download
M third_party/tcmalloc/chromium/src/static_vars.cc View 3 chunks +7 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/symbolize.cc View 9 chunks +65 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/system-alloc.cc View 1 11 chunks +18 lines, -10 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tcmalloc.cc View 1 2 3 4 5 26 chunks +154 lines, -237 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/current_allocated_bytes_test.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/debugallocation_test.cc View 1 3 chunks +6 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/frag_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/heap-checker-death_unittest.sh View 1 1 chunk +5 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/heap-checker_unittest.cc View 1 3 chunks +17 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/heap-profiler_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/low_level_alloc_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/malloc_extension_c_test.c View 1 2 chunks +10 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/malloc_extension_test.cc View 1 3 chunks +22 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/malloc_hook_test.cc View 1 7 chunks +29 lines, -8 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/markidle_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/profile-handler_unittest.cc View 6 chunks +38 lines, -8 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/profiler_unittest.cc View 1 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/sampler_test.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/sampling_test.cc View 1 1 chunk +1 line, -1 line 0 comments Download
A + third_party/tcmalloc/chromium/src/tests/simple_compat_test.cc View 1 2 chunks +29 lines, -25 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/stacktrace_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/tests/system-alloc_unittest.cc View 1 3 chunks +21 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/tcmalloc_unittest.cc View 1 6 chunks +94 lines, -53 lines 0 comments Download
M third_party/tcmalloc/chromium/src/tests/thread_dealloc_unittest.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/thread_cache.h View 1 2 3 4 5 6 4 chunks +11 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/thread_cache.cc View 1 2 9 chunks +44 lines, -43 lines 0 comments Download
A third_party/tcmalloc/chromium/src/windows/auto_testing_hook.h View 1 1 chunk +155 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/config.h View 1 4 chunks +23 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/google/tcmalloc.h View 1 1 chunk +4 lines, -86 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/google/tcmalloc.h.in View 1 1 chunk +0 lines, -116 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h View 1 3 chunks +12 lines, -5 lines 0 comments Download
A + third_party/tcmalloc/chromium/src/windows/gperftools/tcmalloc.h.in View 1 3 chunks +9 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/ia32_opcode_map.cc View 4 chunks +31 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mingw.h View 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mini_disassembler.h View 1 2 3 4 5 6 7 3 chunks +8 lines, -1 line 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mini_disassembler.cc View 3 chunks +14 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/mini_disassembler_types.h View 2 chunks +12 lines, -2 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/patch_functions.cc View 1 7 chunks +8 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/port.h View 6 chunks +14 lines, -5 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/port.cc View 2 3 3 chunks +5 lines, -6 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/preamble_patcher.h View 9 chunks +237 lines, -4 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/preamble_patcher.cc View 11 chunks +393 lines, -53 lines 0 comments Download
A third_party/tcmalloc/chromium/src/windows/preamble_patcher_test.cc View 1 chunk +367 lines, -0 lines 0 comments Download
M third_party/tcmalloc/chromium/src/windows/preamble_patcher_with_stub.cc View 8 chunks +133 lines, -37 lines 0 comments Download
A third_party/tcmalloc/chromium/src/windows/shortproc.asm View 1 chunk +169 lines, -0 lines 0 comments Download
M webkit/extensions/v8/heap_profiler_extension.cc View 1 1 chunk +1 line, -1 line 0 comments Download
M webkit/extensions/v8/profiler_extension.cc View 1 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 37 (0 generated)
Dai Mikurube (NOT FULLTIME)
The change is generated by 1) taking a diff between the original r109 (checked-out separately) ...
8 years, 10 months ago (2012-02-06 06:42:58 UTC) #1
Dai Mikurube (NOT FULLTIME)
Updated to use the latest gperftools 2.0 (r144). Please read the comment #1 above. This ...
8 years, 10 months ago (2012-02-07 10:47:03 UTC) #2
Dai Mikurube (NOT FULLTIME)
Please read the comments #1 and #2 above. Successfully built by * replacing gperftools/tcmalloc.h with ...
8 years, 10 months ago (2012-02-07 12:27:08 UTC) #3
Dai Mikurube (NOT FULLTIME)
An interim update: the Chrome binary with tcmalloc-r144 worked with --no-sandbox. It looks like a ...
8 years, 10 months ago (2012-02-08 07:06:11 UTC) #4
Dai Mikurube (NOT FULLTIME)
On 2012/02/08 07:06:11, Dai Mikurube wrote: > An interim update: the Chrome binary with tcmalloc-r144 ...
8 years, 10 months ago (2012-02-08 11:21:08 UTC) #5
Dai Mikurube (NOT FULLTIME)
The linux_rel bot got happy. Could you take a *brief* look, Jim and Geoff? though ...
8 years, 10 months ago (2012-02-09 10:57:04 UTC) #6
Dai Mikurube (NOT FULLTIME)
It looks like working by replacing sys_{mmap|munmap|mremap}(...) calls with syscall(SYS_{mmap|munmap|mremap}, ...) calls. This change is ...
8 years, 10 months ago (2012-02-10 07:33:07 UTC) #7
Dai Mikurube (NOT FULLTIME)
On 2012/02/10 07:33:07, Dai Mikurube wrote: > It looks like working by replacing sys_{mmap|munmap|mremap}(...) calls ...
8 years, 10 months ago (2012-02-10 07:34:51 UTC) #8
Dai Mikurube (NOT FULLTIME)
It's ready for review, except for the win_rel bot. Could you PTAL at it? I ...
8 years, 10 months ago (2012-02-13 08:49:14 UTC) #9
kinuko
(Adding glider@)
8 years, 10 months ago (2012-02-13 11:27:33 UTC) #10
Alexander Potapenko
On 2012/02/13 11:27:33, kinuko wrote: > (Adding glider@) Hi Dai, you may want to take ...
8 years, 10 months ago (2012-02-13 11:52:11 UTC) #11
Dai Mikurube (NOT FULLTIME)
Thanks for your comments, Alaxander, Kinuko. I fixed the problems with the win_rel bot by ...
8 years, 10 months ago (2012-02-14 11:32:08 UTC) #12
Dai Mikurube (NOT FULLTIME)
win_rel looks like failing very flakily. My guess is that these errors (terminate in an ...
8 years, 10 months ago (2012-02-16 08:38:07 UTC) #13
Dai Mikurube (NOT FULLTIME)
This call looks like the cause of the crash in Windows Release builds. I'll contact ...
8 years, 10 months ago (2012-02-23 08:14:28 UTC) #14
Dai Mikurube (NOT FULLTIME)
Hi, Could you PTAL at it, or forward it to right persons? It looks working ...
8 years, 10 months ago (2012-02-24 03:30:54 UTC) #15
Dai Mikurube (NOT FULLTIME)
Added comments on Chromium-original changes to describe clearly. I'll submit tries when try bots calm ...
8 years, 10 months ago (2012-02-24 06:13:00 UTC) #16
jar (doing other things)
Comments below per our marathon (in person) review. Thanks for spending the time! http://codereview.chromium.org/9311003/diff/73001/third_party/tcmalloc/chromium/src/base/googleinit.h File ...
8 years, 9 months ago (2012-02-28 22:15:49 UTC) #17
Dai Mikurube (NOT FULLTIME)
Hi John and Mike, I wonder if you could PTAL at changes in content/* and ...
8 years, 9 months ago (2012-02-28 23:05:42 UTC) #18
jar (doing other things)
LGTM for base and TCMalloc code. As per discussion, please carefully monitor perf waterfalls when ...
8 years, 9 months ago (2012-02-28 23:24:08 UTC) #19
Dai Mikurube (NOT FULLTIME)
+tony@ Mike (mbelshe@) may not looking at it... Could you PTAL at changes in webkit/extensions/v8/*?
8 years, 9 months ago (2012-02-28 23:56:39 UTC) #20
tony
webkit/ LGTM
8 years, 9 months ago (2012-02-29 00:13:04 UTC) #21
jam
content lgtm
8 years, 9 months ago (2012-02-29 00:32:14 UTC) #22
Dai Mikurube (NOT FULLTIME)
Ahh, some _tests in Debug builds report memory corruption in FL_Next... It's strange corruption in ...
8 years, 9 months ago (2012-02-29 01:04:32 UTC) #23
Dai Mikurube (NOT FULLTIME)
On 2012/02/29 01:04:32, Dai Mikurube wrote: > Ahh, some _tests in Debug builds report memory ...
8 years, 9 months ago (2012-02-29 01:12:51 UTC) #24
Dai Mikurube (NOT FULLTIME)
Ah, looks like not coming from the latest tcmalloc, but from gtest itself. Just adding ...
8 years, 9 months ago (2012-02-29 02:07:56 UTC) #25
Dai Mikurube (NOT FULLTIME)
Jim and reviewers, I wonder if you could give me some advice on the gtest ...
8 years, 9 months ago (2012-02-29 02:22:02 UTC) #26
jar (doing other things)
If your analysis is correct, and gtest is corrupting our memory, then it is causing ...
8 years, 9 months ago (2012-02-29 17:45:33 UTC) #27
Dai Mikurube (NOT FULLTIME)
I'm still not sure why it happens and why the current code doesn't detect it... ...
8 years, 9 months ago (2012-02-29 18:40:43 UTC) #28
Dai Mikurube (NOT FULLTIME)
Ah, no. This run http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux&number=430 (with only adding ASSERT, not updating tcmalloc) looks like having ...
8 years, 9 months ago (2012-02-29 21:29:43 UTC) #29
Dai Mikurube (NOT FULLTIME)
It's failing not at the ASSERT, but at MEMORY_CHECK in FL_Next() before ASSERT. It means ...
8 years, 9 months ago (2012-02-29 22:52:03 UTC) #30
jar (doing other things)
http://codereview.chromium.org/9311003/diff/73001/third_party/tcmalloc/chromium/src/thread_cache.h File third_party/tcmalloc/chromium/src/thread_cache.h (right): http://codereview.chromium.org/9311003/diff/73001/third_party/tcmalloc/chromium/src/thread_cache.h#newcode372 third_party/tcmalloc/chromium/src/thread_cache.h:372: ASSERT(ptr != list->Next()); Since you're having trouble with this ...
8 years, 9 months ago (2012-03-01 01:35:05 UTC) #31
Dai Mikurube (NOT FULLTIME)
http://codereview.chromium.org/9311003/diff/73001/third_party/tcmalloc/chromium/src/thread_cache.h File third_party/tcmalloc/chromium/src/thread_cache.h (right): http://codereview.chromium.org/9311003/diff/73001/third_party/tcmalloc/chromium/src/thread_cache.h#newcode372 third_party/tcmalloc/chromium/src/thread_cache.h:372: ASSERT(ptr != list->Next()); Thanks, Jim. I agree. It looks ...
8 years, 9 months ago (2012-03-01 01:54:04 UTC) #32
Dai Mikurube (NOT FULLTIME)
I think the FL_Next() issue is independent from this TCMalloc update change. I created a ...
8 years, 9 months ago (2012-03-01 02:29:17 UTC) #33
jar (doing other things)
I think it is a separable issue... but IMO, you should not land while that ...
8 years, 9 months ago (2012-03-01 02:33:41 UTC) #34
Dai Mikurube (NOT FULLTIME)
Thank you for the comment. Agreed. I don't land it till this issue is fixed. ...
8 years, 9 months ago (2012-03-01 04:45:06 UTC) #35
Dai Mikurube (NOT FULLTIME)
Fixed the issue based on knowledge from http://crbug.com/116201 and http://codereview.chromium.org/9528002/.
8 years, 9 months ago (2012-03-01 23:48:09 UTC) #36
Dai Mikurube (NOT FULLTIME)
8 years, 9 months ago (2012-03-03 21:01:52 UTC) #37
Ah, I did the updated TCMalloc performance experiments, but I forgot to commit
from another issue...  This issue is closed.

Please look at the new issue http://codereview.chromium.org/9584046/ for the
TCMalloc update.

Powered by Google App Engine
This is Rietveld 408576698