1. 04 Jul, 2016 11 commits
  2. 03 Jul, 2016 1 commit
    • honggyu.kp's avatar
      gdb-v8-support.py: Fix old style print statement · c52685a5
      honggyu.kp authored
      Since python3 does not use the old print statement, it may not be able
      to load gdb-v8-support.py script in gdb as below:
      
        (gdb) source tools/gdb-v8-support.py
          File "tools/gdb-v8-support.py", line 170
            print result
                       ^
        SyntaxError: Missing parentheses in call to 'print'
      
      This fixes print statement for both python2 and python3.
      
      R=jochen@chromium.org
      BUG=
      
      Review-Url: https://codereview.chromium.org/2084163004
      Cr-Commit-Position: refs/heads/master@{#37488}
      c52685a5
  3. 02 Jul, 2016 2 commits
  4. 01 Jul, 2016 24 commits
  5. 30 Jun, 2016 2 commits
    • bjaideep's avatar
      PPC/s390: [builtins] New frame type for exits to C++ builtins · 3ee6b808
      bjaideep authored
      Port 5febc27b
      
      Original commit message:
      
          Prior to this commit, calls to C++ builtins created standard exit
          frames, which are skipped when constructing JS stack traces. In order to
          show these calls on traces, we introduce a new builtin exit frame type.
      
          Builtin exit frames contain target and new.target on the stack and are
          not skipped during stack trace construction.
      
      R=jgruber@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com, mbrandy@us.ibm.com
      
      BUG=v8:4815
      LOG=N
      
      Review-Url: https://codereview.chromium.org/2105023008
      Cr-Commit-Position: refs/heads/master@{#37461}
      3ee6b808
    • jyan's avatar
      S390: Fix MathMaxMin's frame · 4fa104c5
      jyan authored
      MathMaxMin creates frame on stack without removing top bit of r14 on 31-bit.
      
      R=joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com, mbrandy@us.ibm.com, bjaideep@ca.ibm.com
      BUG=
      
      Review-Url: https://codereview.chromium.org/2111263002
      Cr-Commit-Position: refs/heads/master@{#37460}
      4fa104c5