mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-16 11:24:39 +00:00
Style update: don't duplicate the function name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208227 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -33,26 +33,26 @@ protected:
|
||||
public:
|
||||
virtual ~GVMaterializer();
|
||||
|
||||
/// isMaterializable - True if GV can be materialized from whatever backing
|
||||
/// store this GVMaterializer uses and has not been materialized yet.
|
||||
/// True if GV can be materialized from whatever backing store this
|
||||
/// GVMaterializer uses and has not been materialized yet.
|
||||
virtual bool isMaterializable(const GlobalValue *GV) const = 0;
|
||||
|
||||
/// isDematerializable - True if GV has been materialized and can be
|
||||
/// dematerialized back to whatever backing store this GVMaterializer uses.
|
||||
/// True if GV has been materialized and can be dematerialized back to
|
||||
/// whatever backing store this GVMaterializer uses.
|
||||
virtual bool isDematerializable(const GlobalValue *GV) const = 0;
|
||||
|
||||
/// Materialize - make sure the given GlobalValue is fully read.
|
||||
/// Make sure the given GlobalValue is fully read.
|
||||
///
|
||||
virtual error_code Materialize(GlobalValue *GV) = 0;
|
||||
|
||||
/// Dematerialize - If the given GlobalValue is read in, and if the
|
||||
/// GVMaterializer supports it, release the memory for the GV, and set it up
|
||||
/// to be materialized lazily. If the Materializer doesn't support this
|
||||
/// capability, this method is a noop.
|
||||
/// If the given GlobalValue is read in, and if the GVMaterializer supports
|
||||
/// it, release the memory for the GV, and set it up to be materialized
|
||||
/// lazily. If the Materializer doesn't support this capability, this method
|
||||
/// is a noop.
|
||||
///
|
||||
virtual void Dematerialize(GlobalValue *) {}
|
||||
|
||||
/// MaterializeModule - make sure the entire Module has been completely read.
|
||||
/// Make sure the entire Module has been completely read.
|
||||
///
|
||||
virtual error_code MaterializeModule(Module *M) = 0;
|
||||
};
|
||||
|
Reference in New Issue
Block a user