Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: google/pprof
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4bfdf5a
Choose a base ref
...
head repository: google/pprof
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1b30fe
Choose a head ref

Commits on May 28, 2024

  1. fix: fix miss makezero bug (#867)

    Signed-off-by: alingse <alingse@foxmail.com>
    alingse authored May 28, 2024
    Copy the full SHA
    186aa03 View commit details

Commits on Jun 18, 2024

  1. Bump actions/checkout from 4.1.6 to 4.1.7 (#873)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@a5ac7e5...692973e)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 18, 2024
    Copy the full SHA
    d3b898a View commit details

Commits on Jun 22, 2024

  1. Bump codecov/codecov-action from 4.3.1 to 4.5.0 (#872)

    Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.3.1 to 4.5.0.
    - [Release notes](https://github.com/codecov/codecov-action/releases)
    - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
    - [Commits](codecov/codecov-action@5ecb98a...e28ff12)
    
    ---
    updated-dependencies:
    - dependency-name: codecov/codecov-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    dependabot[bot] and aalexand authored Jun 22, 2024
    Copy the full SHA
    c177fd9 View commit details

Commits on Jun 25, 2024

  1. Allow text selection in flamegraph view. (#874)

    Previously, the click handler would fire after some text was selected
    with the mouse. This would switch pivots and forget the selected text.
    
    We now switch the pivot only if the mouse did not move significantly
    between mouse-down and mouse-up.
    
    Fixes #870.
    ghemawat authored Jun 25, 2024
    Copy the full SHA
    27f5697 View commit details

Commits on Jul 11, 2024

  1. Fix stacking order of profile details box. (#878)

    Previously the profile details box (displayed when clicking button
    at top-right of web view), would partially overlap flame graph text.
    Tweak z-index values to fix this problem.
    
    Also, colocate all z-index CSS entries to make the stacking order
    of different things easier to compare.
    ghemawat authored Jul 11, 2024
    Copy the full SHA
    f6c9dda View commit details

Commits on Jul 21, 2024

  1. Bump actions/setup-go from 5.0.1 to 5.0.2 (#880)

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.0.1 to 5.0.2.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@cdcb360...0a12ed9)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 21, 2024
    Copy the full SHA
    7089f98 View commit details

Commits on Jul 22, 2024

  1. Speed-up flame graph generation by skipping unneeded work. (#881)

    Previously, we used to call report.TextItems() during flame
    graph generation just so we could get a hand on the legend
    to print in the profile details box. All the work done by
    TextItems() to produce a trimmed graph was discarded.
    
    This change separates out the legend generation into a
    separate routine so that we can avoid doing the unnecessary
    work.
    
    Benchmark result:
    
    ```
    name      old time/op  new time/op  delta
    Flame-12   6.10s ± 3%   0.39s ± 4%  -93.59%  (p=0.000 n=10+10)
    ```
    ghemawat authored Jul 22, 2024
    Copy the full SHA
    304e4f0 View commit details

Commits on Jul 27, 2024

  1. Use llvm-symbolizer's JSON output for symbolizing (#879)

    In some edge cases (e.g. injected JIT symbols), function names can have
    new lines. This breaks the llvm-symbolizer output parsing, and makes
    pprof hang.
    
    Conveniently, as of LLVM 13, llvm-symbolizer has a JSON output mode,
    which is robust against all kinds of weirdness like new lines. We can
    use this instead of the line-based parsing, and as a bonus we get much
    simpler handling of multiple frames in a stack, as the JSON output
    already returns these as an array.
    
    This also requires splitting the CODE and DATA processing into separate
    functions, since their JSON output is incompatible. For now, we keep the
    DATA output as before, a slightly hacky but functional concatenation of
    start + size, but this could be improved.
    
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    LeszekSwirski and aalexand authored Jul 27, 2024
    Copy the full SHA
    813a5fb View commit details

Commits on Aug 27, 2024

  1. Update runner to Go 1.22,1.23 (two most recent releases). (#887)

    * Update runner to Go 1.22,1.23 (two most recent releases).
    
    * Update runner to Go 1.22,1.23 (two most recent releases).
    
    * Update Go mod to 1.22 as well.
    
    * Update staticcheck to 0.5.1 so it works with 1.23 code
    
    * Update golangci-lint to 1.60.3.
    
    v1.51 fails with errors related to old slices package.
    
    * Require Go 1.22 for bootstrapping Go tip
    
    * Github actions do not support else statements
    
    * Another attempt at Workflow syntax
    
    * Another attempt at Workflow syntax
    
    * Fix caching for Go bootstrap compiler
    
    * Fix caching for Go bootstrap compiler
    
    * Fix caching for Go bootstrap compiler
    
    * Fix caching for Go bootstrap compiler
    
    * Fix caching for Go bootstrap compiler
    
    * Fix caching for Go bootstrap compiler
    
    * Fix caching for Go bootstrap compiler
    
    * Add comments saying why we need cache directives
    ghemawat authored Aug 27, 2024
    Copy the full SHA
    fa2c70b View commit details

Commits on Aug 29, 2024

  1. Add doc URL to profile format and use it display help link. (#888)

    * Add doc URL to profile format and use it display help link.
    
    * Add test for Report.DocURL
    
    * Update new proto field comment
    ghemawat authored Aug 29, 2024
    Copy the full SHA
    da1f7e9 View commit details

Commits on Sep 3, 2024

  1. Added doc link to profile header. (#892)

    Output looks something like:
    
    ```
    % pprof -top ...
    File: ...
    Build ID: ...
    Type: cpu
    Doc: http://example.com/cpuprofile
    Duration: 6.71s, Total samples = 5.72s (85.30%)
    Showing nodes accounting for 5.17s, 90.38% of 5.72s total
    Dropped 326 nodes (cum <= 0.03s)
    ...
    ```
    ghemawat authored Sep 3, 2024
    Copy the full SHA
    a8630ae View commit details

Commits on Sep 10, 2024

  1. Remove unnecessary symbols and add missing symbols (#893)

    Signed-off-by: cuishuang <imcusg@gmail.com>
    cuishuang authored Sep 10, 2024
    Copy the full SHA
    a0b0bb1 View commit details

Commits on Sep 25, 2024

  1. Copy the full SHA
    e2af92c View commit details
  2. Display hovered box details immediately. (#897)

    Display the details (name + samples) of the currently hovered box
    above the flame graph. If no box is currently being hovered
    over, we display the total samples in the flame graph.
    
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    ghemawat and aalexand authored Sep 25, 2024
    Copy the full SHA
    fa3061b View commit details

Commits on Sep 27, 2024

  1. Support different display granularities in flame graph view. (#896)

    * Support different display granularities in flame graph view.
    
    Previously, flame-graph view could only display filefunctions
    granularity. We can now support all the available granularities.
    
    This allows the user to supply a granularity either via a command-line
    flag (e.g., --files), or as a URL parameter (e.g., ?g=files).
    
    Details
    * Made the default initial granularity "" so that we can stick with
      the default flame-graph granularity of "filefunctions" while also
      allowing overrides.
    * Use different computation of the list of shorter display names
      for file names (strip off leading path components instead of package
      prefixes).
    * Similarly compute color based on directory name instead of package name.
    * Include line number and column number in displayed names if the
      granularity includes line numbers.
    
    * Improve granularity entry for options command
    
    ---------
    
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    ghemawat and aalexand authored Sep 27, 2024
    Copy the full SHA
    d43a673 View commit details
  2. Copy the full SHA
    cba816a View commit details
  3. Locate symbolz endpoint with deeper paths (#894)

    - `http://HOST/profilez` -> `http://HOST/symbolz`
    - `http://HOST/some/deeper/path/profilez` -> `http://HOST/some/deeper/path/symbolz`
    
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    shoban and aalexand authored Sep 27, 2024
    Copy the full SHA
    f3f46ee View commit details

Commits on Sep 29, 2024

  1. Use llvm-symbolizer's JSON output to provide function start lines (#891)

    * Use llvm-symbolizer's JSON output to provide function start lines
    
    When analyzing a perf.data profile converted automatically via perf_to_profile via pprof -raw perf.data, no function start lines (s=0) are present in any of the locations. With 813a5fb, this can be easily solved by using the same JSON frame data from llvm-symbolizer to provide StartLine for Function.start_line. This solves #823.
    
    * Fixed TestPEFile windows test
    
    * Fixed TestMachoFiles mac tests
    
    * Fix making sure llvm-symbolizer is available in the CI env for Linux tests
    
    Modify the `Fetch dependencies` step in `test-linux` job to include the installation of llvm. Add `Verify llvm-symbolizer installation` step to ensure that llvm-symbolizer is available in the CI environment for the Linux tests. This should resolve the test failures related to the missing llvm-symbolizer tool.
    
    * ci: Improve LLVM installation for Ubuntu 20.04 and 22.04
    
    Enhances the CI workflow to ensure proper installation of LLVM and the `llvm-symbolizer` across both Ubuntu 20.04 and 22.04 environments. These changes address the issue of an outdated llvm-symbolizer on Ubuntu 20.04, while maintaining compatibility with Ubuntu 22.04.
    
    - Add LLVM official repository for Ubuntu 20.04
    - Install LLVM 14 on Ubuntu 20.04 to ensure a recent version
    - Use update-alternatives to manage llvm-symbolizer versions
    - Maintain existing LLVM 14 for Ubuntu 22.04
    
    * ci: Make it clear that our goal is to install llvm-symbolizer
    
    ---------
    
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    insilications and aalexand authored Sep 29, 2024
    Copy the full SHA
    255acd7 View commit details

Commits on Oct 1, 2024

  1. Bump actions/checkout from 4.1.7 to 4.2.0 (#900)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@692973e...d632683)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 1, 2024
    Copy the full SHA
    f4c0cfd View commit details

Commits on Oct 8, 2024

  1. Bump actions/checkout from 4.2.0 to 4.2.1 (#902)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.1.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@d632683...eef6144)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 8, 2024
    Copy the full SHA
    1484601 View commit details
  2. Bump codecov/codecov-action from 4.5.0 to 4.6.0 (#901)

    Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.5.0 to 4.6.0.
    - [Release notes](https://github.com/codecov/codecov-action/releases)
    - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
    - [Commits](codecov/codecov-action@e28ff12...b9fd7d1)
    
    ---
    updated-dependencies:
    - dependency-name: codecov/codecov-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    dependabot[bot] and aalexand authored Oct 8, 2024
    Copy the full SHA
    332c0e1 View commit details

Commits on Oct 9, 2024

  1. tui: use RFC3339-alike format with second precision for "Time" (#903)

    The current time format (Jan 2, 2006 at 3:04pm (MST)) has a few issues:
    
     - It displays time at minute granularity, while profiles usually have
       have second-level (and more[^go]) granularity.
     - It uses a 12-hour clock, which is tricky to handle at AM/PM
       switchovers, for people (like myself) who are not used to it. By
       contrast, a 24-hour clock is unambiguous.
     - Minor: using names for months makes it more difficult to calculate
       with time differences.
    
    Hence, I propose replacing it with an RFC3339-alike format, with spaces
    between elements for better readability.
    
    [^go]: https://github.com/golang/go/blob/3aa71c12eacd68ec16e7172d92aa5c6af32f0c3b/src/runtime/pprof/proto.go#L351
    aktau authored Oct 9, 2024
    Copy the full SHA
    a352233 View commit details

Commits on Oct 17, 2024

  1. Update kernel base to work for non-KASLR kernels. (#904)

    Replace an existing check for "start >= loadSegment.Vaddr" with
    "start >= 0x8000000000000000".
    
    The old condition was checking for the mapping start address to be greater
    or equal to the program segment Vaddr. However, for kernels without KASLR,
    the mapping start address (start) is less or equal the program header Vaddr.
    If the program header that includes the '.text' section is not the first
    segment, then the mapping start is strictly less than loadSegment.Vaddr.
    
    Instead of removing the condition, we replace it with a check that start is
    in the kernel address space, so we don't take this path for user space
    binaries.
    
    Adjusted the test case for PIE kernels to match actual addresses seen for
    a non-KASLR kernel. The new test fails with the old code and succeeds now.
    gmarin13 authored Oct 17, 2024
    Copy the full SHA
    017d972 View commit details

Commits on Oct 21, 2024

  1. Copy the full SHA
    4cf4322 View commit details

Commits on Oct 23, 2024

  1. Allow symbolz to try symbolize unsymbolizable mappings. (#907)

    We added skipping unsymbolizable mappings in symbolz long time ago in
    PR #368 to address #339 where we saw error like "unexpected negative
    adjusted address".
    
    But that error was fixed in a more proper way in subsequent #397 to fix
    another reported issue #280 (and internal b/32020573). So skipping
    unsymbolized mappings shouldn't be needed anymore.
    
    I tested this by verifying that the test case from #339 still works fine
    with the proposed change. And that it does fail if I roll back #397
    locally.
    
    This change is useful as we experiment with using symbolz to symbolize
    JIT locations from //anon (which is unsymbolizable per current terminology).
    
    Co-authored-by: Maggie Nolan Edmonds <nolanmar@google.com>
    aalexand and nolanmar511 authored Oct 23, 2024
    Copy the full SHA
    5986699 View commit details

Commits on Oct 29, 2024

  1. Bump actions/setup-go from 5.0.2 to 5.1.0 (#909)

    Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.0.2 to 5.1.0.
    - [Release notes](https://github.com/actions/setup-go/releases)
    - [Commits](actions/setup-go@0a12ed9...41dfa10)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-go
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 29, 2024
    Copy the full SHA
    833c56d View commit details
  2. Bump actions/checkout from 4.2.1 to 4.2.2 (#908)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@eef6144...11bd719)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Alexey Alexandrov <aalexand@users.noreply.github.com>
    dependabot[bot] and aalexand authored Oct 29, 2024
    Copy the full SHA
    d1b30fe View commit details
109 changes: 82 additions & 27 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ['1.20', '1.21', 'tip']
go: ['1.22', '1.23', 'tip']
# Supported macOS versions can be found in
# https://github.com/actions/virtual-environments#available-environments.
# TODO: Add macos-13. As of now there are build errors when installing graphviz.
@@ -28,11 +28,31 @@ jobs:
# - https://github.com/actions/virtual-environments/blob/main/images/macos/macos-13-Readme.md#xcode
xcode-version: ['14.2', '14.1', '14.0.1', '13.4.1', '13.3.1', '13.2.1', '13.1']
steps:
- name: Checkout the repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
path: ${{ env.WORKING_DIR }}

- name: Update Go version using setup-go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
if: matrix.go != 'tip'
with:
# Include cache directives to allow proper caching. Without them, we
# get setup-go "Restore cache failed" warnings.
go-version: ${{ matrix.go }}
cache: true
cache-dependency-path: '**/go.sum'

- name: Install Go bootstrap compiler
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
if: matrix.go == 'tip'
with:
# Bootstrapping go tip requires 1.22.6
# Include cache directives to allow proper caching. Without them, we
# get setup-go "Restore cache failed" warnings.
go-version: 1.22
cache: true
cache-dependency-path: '**/go.sum'

- name: Update Go version manually
if: matrix.go == 'tip'
@@ -46,11 +66,6 @@ jobs:
echo "RUN_GOLANGCI_LINTER=false" >> $GITHUB_ENV
echo "$HOME/gotip/bin:$PATH" >> $GITHUB_PATH
- name: Checkout the repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
path: ${{ env.WORKING_DIR }}

- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@60606e260d2fc5762a71e64e74b2174e8ea3c8bd # v1.6.0
with:
@@ -61,8 +76,8 @@ jobs:
brew install graphviz
# Do not let tools interfere with the main module's go.mod.
cd && go mod init tools
go install honnef.co/go/tools/cmd/staticcheck@v0.4.6
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.0
go install honnef.co/go/tools/cmd/staticcheck@v0.5.1
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3
# Add PATH for installed tools.
echo "$GOPATH/bin:$PATH" >> $GITHUB_PATH
@@ -72,7 +87,7 @@ jobs:
./test.sh
- name: Code coverage
uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # v4.3.1
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
with:
file: ${{ env.WORKING_DIR }}/coverage.txt

@@ -84,14 +99,34 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ['1.20', '1.21', 'tip']
go: ['1.22', '1.23', 'tip']
os: ['ubuntu-22.04', 'ubuntu-20.04']
steps:
- name: Checkout the repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
path: ${{ env.WORKING_DIR }}

- name: Update Go version using setup-go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
if: matrix.go != 'tip'
with:
# Include cache directives to allow proper caching. Without them, we
# get setup-go "Restore cache failed" warnings.
go-version: ${{ matrix.go }}
cache: true
cache-dependency-path: '**/go.sum'

- name: Install Go bootstrap compiler
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
if: matrix.go == 'tip'
with:
# Bootstrapping go tip requires 1.22.6
# Include cache directives to allow proper caching. Without them, we
# get setup-go "Restore cache failed" warnings.
go-version: 1.22
cache: true
cache-dependency-path: '**/go.sum'

- name: Update Go version manually
if: matrix.go == 'tip'
@@ -105,32 +140,48 @@ jobs:
echo "RUN_GOLANGCI_LINTER=false" >> $GITHUB_ENV
echo "$HOME/gotip/bin" >> $GITHUB_PATH
- name: Checkout the repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
path: ${{ env.WORKING_DIR }}

- name: Check chrome for browser tests
run: |
google-chrome --version
- name: Add LLVM 14.0 repository to ensure llvm-symbolizer 14.0.0+ on Ubuntu 20.04
if: matrix.os == 'ubuntu-20.04'
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-14 main"
sudo apt-get update
- name: Install llvm-symbolizer
run: |
if [ "${{ matrix.os }}" = "ubuntu-20.04" ]; then
sudo apt-get install -y llvm-14 clang-14
sudo update-alternatives --install /usr/bin/llvm-symbolizer llvm-symbolizer /usr/bin/llvm-symbolizer-14 100
else
sudo apt-get update
sudo apt-get install -y llvm clang
fi
- name: Fetch dependencies
run: |
sudo apt-get install graphviz
# Do not let tools interfere with the main module's go.mod.
cd && go mod init tools
go install honnef.co/go/tools/cmd/staticcheck@v0.4.6
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.0
go install honnef.co/go/tools/cmd/staticcheck@v0.5.1
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3
# Add PATH for installed tools.
echo "$GOPATH/bin:$PATH" >> $GITHUB_PATH
- name: Check llvm-symbolizer installation
run: |
llvm-symbolizer --version
- name: Run the script
run: |
go version
./test.sh
- name: Code coverage
uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # v4.3.1
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
with:
file: ${{ env.WORKING_DIR }}/coverage.txt

@@ -139,18 +190,22 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ['1.20', '1.21']
go: ['1.22', '1.23']
steps:
- name: Update Go version using setup-go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ matrix.go }}

- name: Checkout the repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
path: ${{ env.WORKING_DIR }}

- name: Update Go version using setup-go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
# Include cache directives to allow proper caching. Without them, we
# get setup-go "Restore cache failed" warnings.
go-version: ${{ matrix.go }}
cache: true
cache-dependency-path: '**/go.sum'

- name: Fetch Windows dependency
uses: crazy-max/ghaction-chocolatey@0e015857dd851f84fcb7fb53380eb5c4c8202333 # v3.0.0
with:
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,5 +6,3 @@
core
coverage.txt
pprof
third_party/d3flamegraph/d3.js
third_party/d3flamegraph/node_modules
2 changes: 1 addition & 1 deletion browsertests/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/pprof/browsertests

go 1.19
go 1.22

// Use the version of pprof in this directory tree.
replace github.com/google/pprof => ../
2 changes: 1 addition & 1 deletion browsertests/testdata/testfixture.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// TestFixture records log messages and errors in an array that will
// be returned to Go code. Each element in the result array is either
// an array of the form ["LOG", ...]", or ["ERROR", ...].
// an array of the form ["LOG", ...], or ["ERROR", ...].
class TestFixture {
constructor() {
this.context = ""; // Added to front of all log and error messages.
9 changes: 5 additions & 4 deletions driver/driver.go
Original file line number Diff line number Diff line change
@@ -186,10 +186,11 @@ type ObjFile interface {

// A Frame describes a single line in a source file.
type Frame struct {
Func string // name of function
File string // source file name
Line int // line in file
Column int // column in file
Func string // name of function
File string // source file name
Line int // line in file
Column int // column in file
StartLine int // start line of function (if available)
}

// A Sym describes a single symbol in an object file.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/pprof

go 1.19
go 1.22

require (
github.com/chzyer/readline v1.5.1
Loading