Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • D dynamorio
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,467
    • Issues 1,467
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 44
    • Merge requests 44
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • DynamoRIO
  • dynamorio
  • Issues
  • #4931
Closed
Open
Issue created Jun 01, 2021 by Abhinav Anil Sharma@abhinav92003Contributor

[drreg] Omit adjacent tool-val restore and spill

Today, drreg restores app value of a spilled reg around app instrs that read that reg. E.g. for instr1 and instr2 that both read reg1, drreg will produce a sequence like the following:

<tool val spill for reg1>
<app val restore for reg1>
<app instr 1>
<tool val restore for reg1> // can be omitted

<tool val spill for reg1> // can be omitted
<app val restore for reg1>
<app instr 2>
<tool val restore for reg1>

The commented tool val restore and tool val spill instrs can possibly be omitted. This can be done in instru2instru phase in drreg.

Assignee
Assign to
Time tracking