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()
277 bool MipsInstPrinter::printAlias(const char *Str, const MCInst &MI, in printAlias() function in MipsInstPrinter
284 bool MipsInstPrinter::printAlias(const char *Str, const MCInst &MI, in printAlias() function in MipsInstPrinter
287 printAlias(Str, MI, OpNo0, OS); in printAlias()
293 bool MipsInstPrinter::printAlias(const MCInst &MI, raw_ostream &OS) { in printAlias() function in MipsInstPrinter
300 printAlias("b", MI, 2, OS)) || in printAlias()
301 (isReg<Mips::ZERO>(MI, 1) && printAlias("beqz", MI, 0, 2, OS)); in printAlias()
304 return isReg<Mips::ZERO_64>(MI, 1) && printAlias("beqz", MI, 0, 2, OS); in printAlias()
307 return isReg<Mips::ZERO>(MI, 1) && printAlias("bnez", MI, 0, 2, OS); in printAlias()
310 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.cpp2040 void printAlias(const GlobalAlias *GV);
2257 printAlias(&GA); in printModule()
2438 void AssemblyWriter::printAlias(const GlobalAlias *GA) { in printAlias() function in AssemblyWriter
3322 W.printAlias(cast<GlobalAlias>(GV)); in print()