Lines Matching full:indent
700 OS.indent(Indentation) << "static const uint8_t DecoderTable" << Namespace
723 OS.indent(Indentation) << "MCD::OPC_ExtractField, " << Start << ", "
732 OS.indent(Indentation) << "MCD::OPC_FilterValue, ";
752 OS.indent(Indentation) << "MCD::OPC_CheckField, " << Start << ", "
770 OS.indent(Indentation) << "MCD::OPC_CheckPredicate, ";
796 OS.indent(Indentation) << "MCD::OPC_" << (IsTry ? "Try" : "")
830 OS.indent(Indentation) << "MCD::OPC_SoftFail";
856 OS.indent(Indentation) << "MCD::OPC_Fail,\n";
861 OS.indent(Indentation) << "0\n";
865 OS.indent(Indentation) << "};\n\n";
873 OS.indent(Indentation) << "static bool checkDecoderPredicate(unsigned Idx, "
877 OS.indent(Indentation) << "switch (Idx) {\n";
878 OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n";
881 OS.indent(Indentation) << "case " << Index++ << ":\n";
882 OS.indent(Indentation+2) << "return (" << Predicate << ");\n";
884 OS.indent(Indentation) << "}\n";
887 OS.indent(Indentation) << "llvm_unreachable(\"Invalid index!\");\n";
890 OS.indent(Indentation) << "}\n\n";
898 OS.indent(Indentation) << "template<typename InsnType>\n";
899 OS.indent(Indentation) << "static DecodeStatus decodeToMCInst(DecodeStatus S,"
901 OS.indent(Indentation) << " uint64_t "
904 OS.indent(Indentation) << "DecodeComplete = true;\n";
905 OS.indent
906 OS.indent(Indentation) << "switch (Idx) {\n";
907 OS.indent(Indentation) << "default: llvm_unreachable(\"Invalid index!\");\n";
910 OS.indent(Indentation) << "case " << Index++ << ":\n";
912 OS.indent(Indentation+2) << "return S;\n";
914 OS.indent(Indentation) << "}\n";
916 OS.indent(Indentation) << "}\n\n";
1065 o.indent(Indentation) << "tmp = 0;\n";
1068 o.indent(Indentation) << "tmp ";
1079 o.indent(Indentation) << Emitter->GuardPrefix << Decoder
1086 o.indent(Indentation) << "MI.addOperand(MCOperand::createImm(tmp));\n";
1098 OS.indent(Indentation) << Emitter->GuardPrefix << Op.Decoder