mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-12 14:06:36 +00:00
recognize ppc's blr instruction as predicated
llvm-svn: 31480
This commit is contained in:
parent
d7138e5f2d
commit
04b6336b73
@ -87,6 +87,7 @@ namespace llvm {
|
||||
bool isLoad;
|
||||
bool isStore;
|
||||
bool isTwoAddress;
|
||||
bool isPredicated;
|
||||
bool isConvertibleToThreeAddress;
|
||||
bool isCommutable;
|
||||
bool isTerminator;
|
||||
|
@ -335,6 +335,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr)
|
||||
isLoad = R->getValueAsBit("isLoad");
|
||||
isStore = R->getValueAsBit("isStore");
|
||||
isTwoAddress = R->getValueAsBit("isTwoAddress");
|
||||
isPredicated = false; // set below.
|
||||
isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress");
|
||||
isCommutable = R->getValueAsBit("isCommutable");
|
||||
isTerminator = R->getValueAsBit("isTerminator");
|
||||
@ -381,6 +382,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr)
|
||||
if (unsigned NumArgs = MIOpInfo->getNumArgs())
|
||||
NumOps = NumArgs;
|
||||
|
||||
isPredicated |= Rec->isSubClassOf("PredicateOperand");
|
||||
} else if (Rec->getName() == "variable_ops") {
|
||||
hasVariableNumberOfOperands = true;
|
||||
continue;
|
||||
|
@ -225,6 +225,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
||||
if (Inst.isLoad) OS << "|M_LOAD_FLAG";
|
||||
if (Inst.isStore || isStore) OS << "|M_STORE_FLAG";
|
||||
if (Inst.isTwoAddress) OS << "|M_2_ADDR_FLAG";
|
||||
if (Inst.isPredicated) OS << "|M_PREDICATED";
|
||||
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
|
||||
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
|
||||
if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG";
|
||||
|
Loading…
Reference in New Issue
Block a user