LLVM  8.0.1
Public Member Functions | Friends | List of all members
llvm::SROA Class Reference

An optimization pass providing Scalar Replacement of Aggregates. More...

#include "llvm/Transforms/Scalar/SROA.h"

Inheritance diagram for llvm::SROA:
Inheritance graph
[legend]
Collaboration diagram for llvm::SROA:
Collaboration graph
[legend]

Public Member Functions

 SROA ()=default
 
PreservedAnalyses run (Function &F, FunctionAnalysisManager &AM)
 Run the pass over the function. More...
 

Friends

class sroa::AllocaSliceRewriter
 
class sroa::SROALegacyPass
 

Additional Inherited Members

- Static Public Member Functions inherited from llvm::PassInfoMixin< SROA >
static StringRef name ()
 Gets the name of the pass we are mixed into. More...
 

Detailed Description

An optimization pass providing Scalar Replacement of Aggregates.

This pass takes allocations which can be completely analyzed (that is, they don't escape) and tries to turn them into scalar SSA values. There are a few steps to this process.

1) It takes allocations of aggregates and analyzes the ways in which they are used to try to split them into smaller allocations, ideally of a single scalar data type. It will split up memcpy and memset accesses as necessary and try to isolate individual scalar accesses. 2) It will transform accesses into forms which are suitable for SSA value promotion. This can be replacing a memset with a scalar store of an integer value, or it can involve speculating operations on a PHI or select to be a PHI or select of the results. 3) Finally, this will try to detect a pattern of accesses which map cleanly onto insert and extract operations on a vector value, and convert them to this form. By doing so, it will enable promotion of vector aggregates to SSA vector values.

Definition at line 66 of file SROA.h.

Constructor & Destructor Documentation

◆ SROA()

llvm::SROA::SROA ( )
default

Member Function Documentation

◆ run()

PreservedAnalyses SROA::run ( Function F,
FunctionAnalysisManager AM 
)

Run the pass over the function.

Definition at line 4543 of file SROA.cpp.

References llvm::AnalysisManager< IRUnitT, ExtraArgTs >::getResult(), and runImpl().

Friends And Related Function Documentation

◆ sroa::AllocaSliceRewriter

friend class sroa::AllocaSliceRewriter
friend

Definition at line 120 of file SROA.h.

◆ sroa::SROALegacyPass

friend class sroa::SROALegacyPass
friend

Definition at line 121 of file SROA.h.


The documentation for this class was generated from the following files: