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
  • #2405
Closed
Open
Issue created May 02, 2017 by Administrator@rootContributor

No out-of-line calls are generated on X86 for callees in between inlined and bailout

Created by: fhahn

While adding tests for opt_cleancall=1 (#2395) I noticed that no no out-of-line calls are generated on X86.

On X86 the following condition must be true to generate out-of-line calls:

cci->num_simd_skip == 0 /* save all xmms */ && 
cci->num_regs_skip == 0 /* save all regs */ && 
!cci->skip_save_flags

But it looks like XSP is always considered callee saved, so there is always at least 1 register that can be skipped.

#2395 contains more information in the comments

Assignee
Assign to
Time tracking