mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 08:51:43 +00:00
Fix function name per coding standard.
llvm-svn: 163187
This commit is contained in:
parent
63608419b5
commit
b75afa43e4
@ -111,7 +111,7 @@ public:
|
||||
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;
|
||||
|
@ -263,10 +263,10 @@ public:
|
||||
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
|
||||
|
@ -56,10 +56,10 @@ class MBlazeAsmParser : public MCTargetAsmParser {
|
||||
|
||||
/// }
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
|
@ -38,7 +38,7 @@ class MipsAsmParser : public MCTargetAsmParser {
|
||||
|
||||
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 @@ public:
|
||||
}
|
||||
|
||||
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;
|
||||
|
@ -73,10 +73,10 @@ private:
|
||||
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);
|
||||
}
|
||||
|
||||
|
@ -1701,7 +1701,7 @@ static void emitConvertToMCInst(CodeGenTarget &Target, StringRef ClassName,
|
||||
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 @@ static void emitConvertToMCInst(CodeGenTarget &Target, StringRef ClassName,
|
||||
<< " 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 @@ void AsmMatcherEmitter::run(raw_ostream &OS) {
|
||||
<< "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";
|
||||
|
Loading…
Reference in New Issue
Block a user