[llvm-commits] [llvm] r163187 - in /llvm/trunk: include/llvm/MC/MCTargetAsmParser.h lib/Target/ARM/AsmParser/ARMAsmParser.cpp lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp lib/Target/Mips/AsmParser/MipsAsmParser.cpp lib/Target/X86/AsmParser/X86AsmParser.cpp utils/TableGen/AsmMatcherEmitter.cpp

Chad Rosier mcrosier at apple.com
Tue Sep 4 18:15:43 PDT 2012


Author: mcrosier
Date: Tue Sep  4 20:15:43 2012
New Revision: 163187

URL: http://llvm.org/viewvc/llvm-project?rev=163187&view=rev
Log:
Fix function name per coding standard.

Modified:
    llvm/trunk/include/llvm/MC/MCTargetAsmParser.h
    llvm/trunk/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
    llvm/trunk/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
    llvm/trunk/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
    llvm/trunk/lib/Target/X86/AsmParser/X86AsmParser.cpp
    llvm/trunk/utils/TableGen/AsmMatcherEmitter.cpp

Modified: llvm/trunk/include/llvm/MC/MCTargetAsmParser.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCTargetAsmParser.h?rev=163187&r1=163186&r2=163187&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCTargetAsmParser.h (original)
+++ llvm/trunk/include/llvm/MC/MCTargetAsmParser.h Tue Sep  4 20:15:43 2012
@@ -111,7 +111,7 @@
     return Match_Success;
   }
 
-  virtual unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
+  virtual unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst,
                            const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                                        unsigned OperandNum,
                                        unsigned &NumMCOperands) = 0;

Modified: llvm/trunk/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/AsmParser/ARMAsmParser.cpp?rev=163187&r1=163186&r2=163187&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/AsmParser/ARMAsmParser.cpp (original)
+++ llvm/trunk/lib/Target/ARM/AsmParser/ARMAsmParser.cpp Tue Sep  4 20:15:43 2012
@@ -263,10 +263,10 @@
                                SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                                MCStreamer &Out);
 
-  unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
+  unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst,
                            const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                                unsigned OperandNum, unsigned &NumMCOperands) {
-    return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands);
+    return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands);
   }
 };
 } // end anonymous namespace

Modified: llvm/trunk/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp?rev=163187&r1=163186&r2=163187&view=diff
==============================================================================
--- llvm/trunk/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp (original)
+++ llvm/trunk/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp Tue Sep  4 20:15:43 2012
@@ -56,10 +56,10 @@
 
   /// }
 
-  unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
+  unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst,
                     const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                                unsigned OperandNum, unsigned &NumMCOperands) {
-    return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
+    return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
                                    NumMCOperands);
   }
 

Modified: llvm/trunk/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/AsmParser/MipsAsmParser.cpp?rev=163187&r1=163186&r2=163187&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/AsmParser/MipsAsmParser.cpp (original)
+++ llvm/trunk/lib/Target/Mips/AsmParser/MipsAsmParser.cpp Tue Sep  4 20:15:43 2012
@@ -38,7 +38,7 @@
 
   OperandMatchResultTy parseMemOperand(SmallVectorImpl<MCParsedAsmOperand*>&);
 
-  unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
+  unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst,
                     const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                                unsigned OperandNum, unsigned &NumMCOperands);
 
@@ -102,12 +102,12 @@
 }
 
 unsigned MipsAsmParser::
-GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
+getMCInstOperandNum(unsigned Kind, MCInst &Inst,
                     const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                     unsigned OperandNum, unsigned &NumMCOperands) {
-  assert (0 && "GetMCInstOperandNum() not supported by the Mips target.");
+  assert (0 && "getMCInstOperandNum() not supported by the Mips target.");
   // The Mips backend doesn't currently include the matcher implementation, so
-  // the GetMCInstOperandNumImpl() is undefined.  This is a temporary
+  // the getMCInstOperandNumImpl() is undefined.  This is a temporary
   // work around.
   NumMCOperands = 0;
   return 0;

Modified: llvm/trunk/lib/Target/X86/AsmParser/X86AsmParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/AsmParser/X86AsmParser.cpp?rev=163187&r1=163186&r2=163187&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/AsmParser/X86AsmParser.cpp (original)
+++ llvm/trunk/lib/Target/X86/AsmParser/X86AsmParser.cpp Tue Sep  4 20:15:43 2012
@@ -73,10 +73,10 @@
                         unsigned &OrigErrorInfo,
                         bool matchingInlineAsm = false);
 
-  unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
+  unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst,
                     const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                                unsigned OperandNum, unsigned &NumMCOperands) {
-    return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
+    return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
                                    NumMCOperands);
   }
 

Modified: llvm/trunk/utils/TableGen/AsmMatcherEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/AsmMatcherEmitter.cpp?rev=163187&r1=163186&r2=163187&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/AsmMatcherEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/AsmMatcherEmitter.cpp Tue Sep  4 20:15:43 2012
@@ -1701,7 +1701,7 @@
   raw_string_ostream OpOS(OperandFnBody);
   // Start the operand number lookup function.
   OpOS << "unsigned " << Target.getName() << ClassName << "::\n"
-       << "GetMCInstOperandNumImpl(unsigned Kind, MCInst &Inst,\n"
+       << "getMCInstOperandNumImpl(unsigned Kind, MCInst &Inst,\n"
        << "                        const SmallVectorImpl<MCParsedAsmOperand*> "
        << "&Operands,\n                        unsigned OperandNum, unsigned "
        << "&NumMCOperands) {\n"
@@ -1722,7 +1722,7 @@
        << "      break;\n"
        << "    case CVT_Tied:\n"
        << "      // FIXME: Tied operand calculation not supported.\n"
-       << "      assert (0 && \"GetMCInstOperandNumImpl() doesn't support tied operands, yet!\");\n"
+       << "      assert (0 && \"getMCInstOperandNumImpl() doesn't support tied operands, yet!\");\n"
        << "      break;\n";
 
   // Pre-populate the operand conversion kinds with the standard always
@@ -2599,7 +2599,7 @@
      << "unsigned Opcode,\n"
      << "                          const SmallVectorImpl<MCParsedAsmOperand*> "
      << "&Operands);\n";
-  OS << "  unsigned GetMCInstOperandNumImpl(unsigned Kind, MCInst &Inst,\n     "
+  OS << "  unsigned getMCInstOperandNumImpl(unsigned Kind, MCInst &Inst,\n     "
      << "                              const "
      << "SmallVectorImpl<MCParsedAsmOperand*> &Operands,\n                     "
      << "          unsigned OperandNum, unsigned &NumMCOperands);\n";





More information about the llvm-commits mailing list