1. 01 Aug, 2017 37 commits
  2. 31 Jul, 2017 3 commits
    • Jaideep Bajwa's avatar
      PPC: Disable wasm simd load store testcase · 68b2450b
      Jaideep Bajwa authored
      For this testcase to run on BE, it requires Load/store
      reversed byte instructions. Disabling testcase until
      the necessary instructions are implemented.
      
      R=machenbach@chromium.org, jkummerow@chromium.org
      BUG=
      LOG=N
      
      Change-Id: I380c9a07030ba12e9b9e81c372496819102e2b0d
      Reviewed-on: https://chromium-review.googlesource.com/595047Reviewed-by: 's avatarAdam Klein <adamk@chromium.org>
      Commit-Queue: Jaideep Bajwa <bjaideep@ca.ibm.com>
      Cr-Commit-Position: refs/heads/master@{#47023}
      68b2450b
    • Alexey Kozyatinskiy's avatar
      [inspector] don't call clearAllBreakpoints · f2fe13f6
      Alexey Kozyatinskiy authored
      This call from inspector side is redundant, V8 will clear all breakpoints on removing debug delegate in v8::internal::Debug::Unload method.
      
      In any case for correct support of multiclient we need to clear breakpoints in V8DebuggerAgentImpl::disable method.
      
      R=dgozman@chromium.org
      
      Bug: v8:5510,chromium:652939
      Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel
      Change-Id: I66f9b97797860bad28884a099928d54ac3560428
      Reviewed-on: https://chromium-review.googlesource.com/592281
      Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
      Reviewed-by: 's avatarDmitry Gozman <dgozman@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47022}
      f2fe13f6
    • Alexey Kozyatinskiy's avatar
      [inspector] speedup Debugger.getPossibleBreakpoints · f455986f
      Alexey Kozyatinskiy authored
      In current implementation we call PrepareForBreakPoints during getting possible breakpoints, this call produce GC and iteration through heap, but it's not needed before we set real breakpoint.
      
      On my machine, get-possible-breakpoints-master.js without CL takes ~200ms, with CL it takes ~60 ms. Running test without getPossibleBreakpoints protocol call takes ~50 ms. It means that we have (200-50)/(60-50) = 15 times faster getPossibleBreakpoints.
      
      R=yangguo@chromium.org,jgrubber@chromium.org
      
      Bug: none
      Change-Id: If12e41cd87dbba11a89aa5895e3b4d88123d7d3d
      Reviewed-on: https://chromium-review.googlesource.com/591027
      Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
      Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#47021}
      f455986f