mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 00:21:03 +00:00
Oops. Forgot these.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44969 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -92,6 +92,7 @@ namespace llvm {
|
|||||||
bool isCall;
|
bool isCall;
|
||||||
bool isLoad;
|
bool isLoad;
|
||||||
bool isStore;
|
bool isStore;
|
||||||
|
bool isImplicitDef;
|
||||||
bool isPredicable;
|
bool isPredicable;
|
||||||
bool isConvertibleToThreeAddress;
|
bool isConvertibleToThreeAddress;
|
||||||
bool isCommutable;
|
bool isCommutable;
|
||||||
|
@@ -384,6 +384,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr)
|
|||||||
isCall = R->getValueAsBit("isCall");
|
isCall = R->getValueAsBit("isCall");
|
||||||
isLoad = R->getValueAsBit("isLoad");
|
isLoad = R->getValueAsBit("isLoad");
|
||||||
isStore = R->getValueAsBit("isStore");
|
isStore = R->getValueAsBit("isStore");
|
||||||
|
isImplicitDef= R->getValueAsBit("isImplicitDef");
|
||||||
bool isTwoAddress = R->getValueAsBit("isTwoAddress");
|
bool isTwoAddress = R->getValueAsBit("isTwoAddress");
|
||||||
isPredicable = R->getValueAsBit("isPredicable");
|
isPredicable = R->getValueAsBit("isPredicable");
|
||||||
isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress");
|
isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress");
|
||||||
|
@@ -243,6 +243,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
|
|||||||
if (Inst.isCall) OS << "|M_CALL_FLAG";
|
if (Inst.isCall) OS << "|M_CALL_FLAG";
|
||||||
if (Inst.isLoad) OS << "|M_LOAD_FLAG";
|
if (Inst.isLoad) OS << "|M_LOAD_FLAG";
|
||||||
if (Inst.isStore || isStore) OS << "|M_STORE_FLAG";
|
if (Inst.isStore || isStore) OS << "|M_STORE_FLAG";
|
||||||
|
if (Inst.isImplicitDef)OS << "|M_IMPLICIT_DEF_FLAG";
|
||||||
if (Inst.isPredicable) OS << "|M_PREDICABLE";
|
if (Inst.isPredicable) OS << "|M_PREDICABLE";
|
||||||
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
|
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
|
||||||
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
|
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
|
||||||
|
Reference in New Issue
Block a user