diff options
author | Owen Anderson <resistor@mac.com> | 2007-11-12 07:39:39 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-11-12 07:39:39 +0000 |
commit | 933b5b7e6274bfb79725e9158ba47fd5d3a7ca47 (patch) | |
tree | 87cde4ffaecafd34e396816649908748be329ddf /llvm/utils/TableGen | |
parent | be51f28e2b342931c1e61437cf579bc14b690302 (diff) | |
download | bcm5719-llvm-933b5b7e6274bfb79725e9158ba47fd5d3a7ca47.tar.gz bcm5719-llvm-933b5b7e6274bfb79725e9158ba47fd5d3a7ca47.zip |
Add a flag for indirect branch instructions.
Target maintainers: please check that the instructions for your target are correctly marked.
llvm-svn: 44012
Diffstat (limited to 'llvm/utils/TableGen')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.h | 1 | ||||
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 1 | ||||
-rw-r--r-- | llvm/utils/TableGen/InstrInfoEmitter.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.h b/llvm/utils/TableGen/CodeGenInstruction.h index 6abe972880d..245b38e0493 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h @@ -87,6 +87,7 @@ namespace llvm { // Various boolean values we track for the instruction. bool isReturn; bool isBranch; + bool isIndirectBranch; bool isBarrier; bool isCall; bool isLoad; diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index ea96cf4bd27..4de05b2f83d 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -379,6 +379,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isReturn = R->getValueAsBit("isReturn"); isBranch = R->getValueAsBit("isBranch"); + isIndirectBranch = R->getValueAsBit("isIndirectBranch"); isBarrier = R->getValueAsBit("isBarrier"); isCall = R->getValueAsBit("isCall"); isLoad = R->getValueAsBit("isLoad"); diff --git a/llvm/utils/TableGen/InstrInfoEmitter.cpp b/llvm/utils/TableGen/InstrInfoEmitter.cpp index ca8d30f0c05..d371934bbbe 100644 --- a/llvm/utils/TableGen/InstrInfoEmitter.cpp +++ b/llvm/utils/TableGen/InstrInfoEmitter.cpp @@ -237,6 +237,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num, // Emit all of the target indepedent flags... if (Inst.isReturn) OS << "|M_RET_FLAG"; if (Inst.isBranch) OS << "|M_BRANCH_FLAG"; + if (Inst.isIndirectBranch) OS << "|M_INDIRECT_FLAG"; if (Inst.isBarrier) OS << "|M_BARRIER_FLAG"; if (Inst.hasDelaySlot) OS << "|M_DELAY_SLOT_FLAG"; if (Inst.isCall) OS << "|M_CALL_FLAG"; |