- 
                Notifications
    
You must be signed in to change notification settings  - Fork 15.1k
 
[CodeGenPrepare] Filter out unrecreatable addresses from memory optimization #143566
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
    
  
     Merged
                    Changes from 1 commit
      Commits
    
    
            Show all changes
          
          
            9 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      b7f4b17
              
                [CodeGenPrepare] Handle address sinking obtained from invoke
              
              
                e-kud 8d928bc
              
                Don't try to sink addresses that we can't recreate
              
              
                e-kud 0c804d3
              
                Rename the test
              
              
                e-kud a5b5b9a
              
                Add tests for args and globals
              
              
                e-kud 81ddd17
              
                Skip anything that is not an instruction from current basic block
              
              
                e-kud 360e261
              
                Merge branch 'main' into cg-prepare-term-addr
              
              
                e-kud ccf28b5
              
                Skip only instructions from different basic blocks
              
              
                e-kud 85eb67b
              
                Merge branch 'main' into cg-prepare-term-addr
              
              
                e-kud 5215657
              
                Merge branch 'main' into cg-prepare-term-addr
              
              
                e-kud File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
      
      Oops, something went wrong.
        
    
  
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found Invoke instruction at this position is already wrong. The problem is at
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use global pointers safely because we can't get iterator in a BB for them. Do we want to handle them similarly to instructions in other blocks?
Clone -- do you mean create GEP with 0?
Not obvious to me, why is it different from instructions in other blocks or from globals?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I agree with @weiguozhi . From looking at the test case, why are we trying to sink the GEP upwards toward the entry block? It seems like something has gone wrong earlier.
The proposed fix is like adding a null check when the correct fix was to avoid passing null at a higher level.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I agree but the same we can say about checking on
Instructionto bypass arguments and globals.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The purpose of optimizeMemoryInst is to find address computation in PrevBB, and the address is used in a memory access instruction in a SuccBB, it then duplicate the address computation in SuccBB, SelectionDAG can fold the address computation into memory access.
Global pointers is absolutely OK in a memory access instruction, but it doesn't fit into this optimization.
Duplicate the address computation instruction. (thus SunkAddr)
We can't fold Invoke instruction into a memory access instruction.