[llvm-bugs] [Bug 41523] New: [llvm-mca] Add support for nested and overlapping region markers

via llvm-bugs llvm-bugs at lists.llvm.org
Wed Apr 17 03:33:06 PDT 2019


https://bugs.llvm.org/show_bug.cgi?id=41523

            Bug ID: 41523
           Summary: [llvm-mca] Add support for nested and overlapping
                    region markers
           Product: tools
           Version: trunk
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: llvm-mca
          Assignee: unassignedbugs at nondot.org
          Reporter: llvm-dev at redking.me.uk
                CC: andrea.dibiagio at gmail.com, llvm-bugs at lists.llvm.org,
                    matthew.davis at sony.com

We sometimes want to analyze codegen in multiple regions, it'd be useful if we
could nest and overlap region markers to support this:


testloop:
# LLVM-MCA-BEGIN outer
  leal 42(%rdi), %eax
# LLVM-MCA-BEGIN inner
  imull %esi, %eax
# LLVM-MCA-END inner
  leal 42(%rdi), %eax
# LLVM-MCA-END outer
  imull %esi, %eax



testloop:
# LLVM-MCA-BEGIN upper
  leal 42(%rdi), %eax
# LLVM-MCA-BEGIN lower
  imull %esi, %eax
# LLVM-MCA-END upper
  leal 42(%rdi), %eax
# LLVM-MCA-END lower
  imull %esi, %eax

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20190417/4c59a8d7/attachment-0001.html>


More information about the llvm-bugs mailing list