• Home
  • Raw
  • Download

Lines Matching refs:MAI

32   const MCAsmInfo &MAI;  member in __anonc6ad3e660111::PTXMCAsmStreamer
49 : MCStreamer(Context), OS(os), MAI(Context.getAsmInfo()), in PTXMCAsmStreamer()
212 OS.PadToColumn(MAI.getCommentColumn()); in EmitCommentsAndEOL()
214 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n'; in EmitCommentsAndEOL()
238 OS << *Symbol << MAI.getLabelSuffix(); in EmitLabel()
335 OS << MAI.getData8bitsDirective(AddrSpace); in EmitBytes()
343 if (MAI.getAscizDirective() && Data.back() == 0) { in EmitBytes()
344 OS << MAI.getAscizDirective(); in EmitBytes()
347 OS << MAI.getAsciiDirective(); in EmitBytes()
361 case 1: Directive = MAI.getData8bitsDirective(AddrSpace); break; in EmitValueImpl()
362 case 2: Directive = MAI.getData16bitsDirective(AddrSpace); break; in EmitValueImpl()
363 case 4: Directive = MAI.getData32bitsDirective(AddrSpace); break; in EmitValueImpl()
365 Directive = MAI.getData64bitsDirective(AddrSpace); in EmitValueImpl()
387 assert(MAI.hasLEB128() && "Cannot print a .uleb"); in EmitULEB128Value()
393 assert(MAI.hasLEB128() && "Cannot print a .sleb"); in EmitSLEB128Value()
399 assert(MAI.getGPRel32Directive() != 0); in EmitGPRel32Value()
400 OS << MAI.getGPRel32Directive() << *Value; in EmitGPRel32Value()
412 if (const char *ZeroDirective = MAI.getZeroDirective()) { in EmitFill()
433 case 1: OS << MAI.getAlignDirective(); break; in EmitValueToAlignment()
440 if (MAI.getAlignmentIsInBytes()) in EmitValueToAlignment()
481 assert(MAI.hasSingleParameterDotFile()); in EmitFileDirective()
507 Inst.dump_pretty(GetCommentOS(), &MAI, InstPrinter.get(), "\n "); in EmitInstruction()
515 Inst.print(OS, &MAI); in EmitInstruction()