diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-16 14:36:13 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-01-16 14:36:13 +0100 |
| commit | 361df3f37499d97ab27fdbc38390a85580baf078 (patch) | |
| tree | 43040da7961b44423d0f30d270de8d1cb6abaa2f /src/chattyparser.py | |
| parent | 0978c0cbbcdca5394b2a0aeeab0771939021fd15 (diff) | |
| download | allocbench-361df3f37499d97ab27fdbc38390a85580baf078.tar.gz allocbench-361df3f37499d97ab27fdbc38390a85580baf078.zip | |
Revert "add tid to chattymalloc log"
This reverts commit 0978c0cbbcdca5394b2a0aeeab0771939021fd15.
Diffstat (limited to 'src/chattyparser.py')
| -rwxr-xr-x | src/chattyparser.py | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/chattyparser.py b/src/chattyparser.py index 6297754..586bccb 100755 --- a/src/chattyparser.py +++ b/src/chattyparser.py @@ -24,21 +24,20 @@ import sys import matplotlib.pyplot as plt import numpy as np -TID = "(?P<tid>\\d+)" PTR = "(?:0x)?(?P<ptr>(?:\\w+)|(?:\\(nil\\)))" SIZE = "(?P<size>\\d+)" ALIGNMENT = "(?P<alignment>\\d+)" -MALLOC_RE = re.compile(f"^{TID}: m {SIZE} {PTR}$") -FREE_RE = re.compile(f"^{TID}: f {PTR}$") -CALLOC_RE = re.compile(f"^{TID}: c (?P<nmemb>\\d+) {SIZE} {PTR}$") -REALLOC_RE = re.compile(f"^{TID}: r {PTR} {SIZE} {PTR.replace('ptr', 'nptr')}$") -MEMALIGN_RE = re.compile(f"^{TID}: ma {ALIGNMENT} {SIZE} {PTR}$") +MALLOC_RE = re.compile(f"^m {SIZE} {PTR}$") +FREE_RE = re.compile(f"^f {PTR}$") +CALLOC_RE = re.compile(f"^c (?P<nmemb>\\d+) {SIZE} {PTR}$") +REALLOC_RE = re.compile(f"^r {PTR} {SIZE} {PTR.replace('ptr', 'nptr')}$") +MEMALIGN_RE = re.compile(f"^ma {ALIGNMENT} {SIZE} {PTR}$") POSIX_MEMALIGN_RE = re.compile( - f"^{TID}: p_ma {PTR} {ALIGNMENT} {SIZE} (?P<ret>\\d+)$") -VALLOC_RE = re.compile(f"^{TID}: v {SIZE} {PTR}$") -PVALLOC_RE = re.compile(f"^{TID}: pv {SIZE} {PTR}$") -ALIGNED_ALLOC_RE = re.compile(f"^{TID}: a_m {ALIGNMENT} {SIZE} {PTR}$") + f"^p_ma {PTR} {ALIGNMENT} {SIZE} (?P<ret>\\d+)$") +VALLOC_RE = re.compile(f"^v {SIZE} {PTR}$") +PVALLOC_RE = re.compile(f"^pv {SIZE} {PTR}$") +ALIGNED_ALLOC_RE = re.compile(f"^a_m {ALIGNMENT} {SIZE} {PTR}$") TRACE_REGEX = { "malloc": MALLOC_RE, |
