diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-07-07 00:48:02 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-07-07 00:48:02 +0000 |
commit | 4c08a9f83815e7ec357469724cc55a4b8e8aad25 (patch) | |
tree | 8853bbf05da20c179b27d82990c875f83b3abe71 /llvm/utils/TableGen | |
parent | 8f11a4ac96067ceb1aba28e49c8982712d257ceb (diff) | |
download | bcm5719-llvm-4c08a9f83815e7ec357469724cc55a4b8e8aad25.tar.gz bcm5719-llvm-4c08a9f83815e7ec357469724cc55a4b8e8aad25.zip |
Add isCodeGenOnly value to the CodeGenInstruction class.
So users of a CGI don't have to look up the value directly from the original
Record; just like the rest of the convenience values in the class.
llvm-svn: 134576
Diffstat (limited to 'llvm/utils/TableGen')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.cpp | 1 | ||||
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.cpp b/llvm/utils/TableGen/CodeGenInstruction.cpp index 28b56ba1295..d1e63a9bd8f 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -311,6 +311,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R) : TheDef(R), Operands(R) { isAsCheapAsAMove = R->getValueAsBit("isAsCheapAsAMove"); hasExtraSrcRegAllocReq = R->getValueAsBit("hasExtraSrcRegAllocReq"); hasExtraDefRegAllocReq = R->getValueAsBit("hasExtraDefRegAllocReq"); + isCodeGenOnly = R->getValueAsBit("isCodeGenOnly"); isPseudo = R->getValueAsBit("isPseudo"); ImplicitDefs = R->getValueAsListOfDefs("Defs"); ImplicitUses = R->getValueAsListOfDefs("Uses"); diff --git a/llvm/utils/TableGen/CodeGenInstruction.h b/llvm/utils/TableGen/CodeGenInstruction.h index ad39722ab0f..e00b631247d 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h @@ -235,6 +235,7 @@ namespace llvm { bool isAsCheapAsAMove; bool hasExtraSrcRegAllocReq; bool hasExtraDefRegAllocReq; + bool isCodeGenOnly; bool isPseudo; |