[GlobalISel] Coding style and whitespace fixes
authorTom Stellard <thomas.stellard@amd.com>
Thu, 14 Apr 2016 17:23:33 +0000 (17:23 +0000)
committerTom Stellard <thomas.stellard@amd.com>
Thu, 14 Apr 2016 17:23:33 +0000 (17:23 +0000)
Reviewers: qcolombet

Subscribers: joker.eph, llvm-commits, vkalintiris

Differential Revision: http://reviews.llvm.org/D19119

llvm-svn: 266342

llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
llvm/lib/Target/AArch64/AArch64CallLowering.cpp
llvm/lib/Target/AArch64/AArch64CallLowering.h

index 117c81c..bbd0b6d 100644 (file)
@@ -40,13 +40,13 @@ class CallLowering {
  public:
   CallLowering(const TargetLowering *TLI) : TLI(TLI) {}
   virtual ~CallLowering() {}
-  
+
   /// This hook must be implemented to lower outgoing return values, described
   /// by \p Val, into the specified virtual register \p VReg.
   /// This hook is used by GlobalISel.
   ///
   /// \return True if the lowering succeeds, false otherwise.
-  virtual bool LowerReturn(MachineIRBuilder &MIRBuilder, const Value *Val,
+  virtual bool lowerReturn(MachineIRBuilder &MIRBuilder, const Value *Val,
                            unsigned VReg) const {
     return false;
   }
@@ -61,7 +61,7 @@ class CallLowering {
   ///
   /// \return True if the lowering succeeded, false otherwise.
   virtual bool
-  LowerFormalArguments(MachineIRBuilder &MIRBuilder,
+  lowerFormalArguments(MachineIRBuilder &MIRBuilder,
                        const Function::ArgumentListType &Args,
                        const SmallVectorImpl<unsigned> &VRegs) const {
     return false;
index 6fd179f..98af760 100644 (file)
@@ -79,7 +79,7 @@ bool IRTranslator::translateReturn(const Instruction &Inst) {
   // The target may mess up with the insertion point, but
   // this is not important as a return is the last instruction
   // of the block anyway.
-  return CLI->LowerReturn(MIRBuilder, Ret, !Ret ? 0 : getOrCreateVReg(*Ret));
+  return CLI->lowerReturn(MIRBuilder, Ret, !Ret ? 0 : getOrCreateVReg(*Ret));
 }
 
 bool IRTranslator::translateBr(const Instruction &Inst) {
@@ -136,7 +136,7 @@ bool IRTranslator::runOnMachineFunction(MachineFunction &MF) {
   for (const Argument &Arg: F.args())
     VRegArgs.push_back(getOrCreateVReg(Arg));
   bool Succeeded =
-      CLI->LowerFormalArguments(MIRBuilder, F.getArgumentList(), VRegArgs);
+      CLI->lowerFormalArguments(MIRBuilder, F.getArgumentList(), VRegArgs);
   if (!Succeeded)
     report_fatal_error("Unable to lower arguments");
 
index 0c893e2..e3522e6 100644 (file)
@@ -29,7 +29,7 @@ AArch64CallLowering::AArch64CallLowering(const AArch64TargetLowering &TLI)
   : CallLowering(&TLI) {
 }
 
-bool AArch64CallLowering::LowerReturn(MachineIRBuilder &MIRBuilder,
+bool AArch64CallLowering::lowerReturn(MachineIRBuilder &MIRBuilder,
                                         const Value *Val, unsigned VReg) const {
   MachineInstr *Return = MIRBuilder.buildInstr(AArch64::RET_ReallyLR);
   assert(Return && "Unable to build a return instruction?!");
@@ -53,7 +53,7 @@ bool AArch64CallLowering::LowerReturn(MachineIRBuilder &MIRBuilder,
   return true;
 }
 
-bool AArch64CallLowering::LowerFormalArguments(
+bool AArch64CallLowering::lowerFormalArguments(
     MachineIRBuilder &MIRBuilder, const Function::ArgumentListType &Args,
     const SmallVectorImpl<unsigned> &VRegs) const {
   MachineFunction &MF = MIRBuilder.getMF();
index 449a237..4116228 100644 (file)
 namespace llvm {
 
 class AArch64TargetLowering;
-  
+
 class AArch64CallLowering: public CallLowering {
  public:
   AArch64CallLowering(const AArch64TargetLowering &TLI);
-  
-  bool LowerReturn(MachineIRBuilder &MIRBuiler, const Value *Val,
+
+  bool lowerReturn(MachineIRBuilder &MIRBuiler, const Value *Val,
                    unsigned VReg) const override;
   bool
-  LowerFormalArguments(MachineIRBuilder &MIRBuilder,
+  lowerFormalArguments(MachineIRBuilder &MIRBuilder,
                        const Function::ArgumentListType &Args,
                        const SmallVectorImpl<unsigned> &VRegs) const override;
 };