Lines Matching refs:Case
42 std::string &Case, CodeGenTarget &Target);
66 std::string &Case, CodeGenTarget &Target) { in AddCodeToMergeInOperand() argument
127 Case += " // op: " + VarName + "\n" + in AddCodeToMergeInOperand()
129 Case += ", Fixups, STI"; in AddCodeToMergeInOperand()
130 Case += ");\n"; in AddCodeToMergeInOperand()
133 Case += " // op: " + VarName + "\n" + in AddCodeToMergeInOperand()
135 Case += ", Fixups, STI"; in AddCodeToMergeInOperand()
136 Case += ");\n"; in AddCodeToMergeInOperand()
166 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) << " + in AddCodeToMergeInOperand()
169 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) >> " + in AddCodeToMergeInOperand()
172 Case += " Value |= op & UINT64_C(" + utostr(opMask) + ");\n"; in AddCodeToMergeInOperand()
180 std::string Case; in getInstructionCase() local
210 NamedOpIndices, Case, Target); in getInstructionCase()
215 Case += " Value = " + PostEmitter + "(MI, Value"; in getInstructionCase()
216 Case += ", STI"; in getInstructionCase()
217 Case += ");\n"; in getInstructionCase()
220 return Case; in getInstructionCase()
278 std::string Case = getInstructionCase(R, Target); in run() local
280 CaseMap[Case].push_back(InstName); in run()
293 const std::string &Case = IE->first; in run() local
301 o << Case; in run()