Lines Matching refs:Indent
182 ++Indent; in expandPredicateSequence()
187 OS << '\n' << Indent; in expandPredicateSequence()
193 --Indent; in expandPredicateSequence()
194 OS << '\n' << Indent << ')'; in expandPredicateSequence()
261 OS << Indent << "case " << Opcode->getValueAsString("Namespace") in expandOpcodeSwitchCase()
265 ++Indent; in expandOpcodeSwitchCase()
266 OS << Indent; in expandOpcodeSwitchCase()
268 --Indent; in expandOpcodeSwitchCase()
283 SS << Indent << "default:\n"; in expandOpcodeSwitchStatement()
285 ++Indent; in expandOpcodeSwitchStatement()
286 SS << Indent; in expandOpcodeSwitchStatement()
288 SS << '\n' << Indent << "} // end of switch-stmt"; in expandOpcodeSwitchStatement()
422 OS << Indent << "bool "; in expandHeader()
448 ++Indent; in expandPrologue()
451 OS << Indent << "if (" << Delegate->getValueAsString("Name") << "(MI"; in expandPrologue()
457 OS << Indent + 1 << "return true;\n\n"; in expandPrologue()
463 OS << Indent << "unsigned ProcessorID = getSchedModel().getProcessorID();\n"; in expandPrologue()
478 OS << Indent << "if (ProcessorID == " << I; in expandOpcodeGroup()
487 ++Indent; in expandOpcodeGroup()
488 OS << Indent; in expandOpcodeGroup()
494 OS << Indent; in expandOpcodeGroup()
499 --Indent; in expandOpcodeGroup()
500 OS << Indent << "}\n"; in expandOpcodeGroup()
509 OS << Indent << "switch(MI" << (isByRef() ? "." : "->") << "getOpcode()) {\n"; in expandBody()
510 OS << Indent << "default:\n"; in expandBody()
511 OS << Indent << " break;"; in expandBody()
516 << Indent << "case " << getTargetName() << "::" << Opcode->getName() in expandBody()
521 ++Indent; in expandBody()
524 OS << Indent << "break;\n"; in expandBody()
525 --Indent; in expandBody()
528 OS << Indent << "}\n"; in expandBody()
533 OS << '\n' << Indent; in expandEpilogue()
538 --Indent; in expandEpilogue()
540 OS << Indent << "} // " << ClassPrefix << "::" << FunctionName << "\n\n"; in expandEpilogue()