Home
last modified time | relevance | path

Searched refs:printAlias (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Target/Mips/InstPrinter/
DMipsInstPrinter.cpp112 if (!printAliasInstr(MI, O) && !printAlias(*MI, O)) in printInst()
274 bool MipsInstPrinter::printAlias(const char *Str, const MCInst &MI, in printAlias() function in MipsInstPrinter
281 bool MipsInstPrinter::printAlias(const char *Str, const MCInst &MI, in printAlias() function in MipsInstPrinter
284 printAlias(Str, MI, OpNo0, OS); in printAlias()
290 bool MipsInstPrinter::printAlias(const MCInst &MI, raw_ostream &OS) { in printAlias() function in MipsInstPrinter
297 printAlias("b", MI, 2, OS)) || in printAlias()
298 (isReg<Mips::ZERO>(MI, 1) && printAlias("beqz", MI, 0, 2, OS)); in printAlias()
301 return isReg<Mips::ZERO_64>(MI, 1) && printAlias("beqz", MI, 0, 2, OS); in printAlias()
304 return isReg<Mips::ZERO>(MI, 1) && printAlias("bnez", MI, 0, 2, OS); in printAlias()
307 return isReg<Mips::ZERO_64>(MI, 1) && printAlias("bnez", MI, 0, 2, OS); in printAlias()
[all …]
DMipsInstPrinter.h106 bool printAlias(const char *Str, const MCInst &MI, unsigned OpNo,
108 bool printAlias(const char *Str, const MCInst &MI, unsigned OpNo0,
110 bool printAlias(const MCInst &MI, raw_ostream &OS);
/external/llvm/lib/IR/
DAsmWriter.cpp1976 void printAlias(const GlobalAlias *GV);
2170 printAlias(I); in printModule()
2350 void AssemblyWriter::printAlias(const GlobalAlias *GA) { in printAlias() function in AssemblyWriter
3151 W.printAlias(cast<GlobalAlias>(GV)); in print()