Home | History | Annotate | Download | only in llvm-nm

Lines Matching defs:darwin

54 enum OutputFormatTy { bsd, sysv, posix, darwin };
59 clEnumVal(darwin, "Darwin -m format"), clEnumValEnd),
92 cl::opt<bool> DarwinFormat("m", cl::desc("Alias for --format=darwin"),
289 // the OutputFormat is darwin or we are printing Mach-O symbols in hex. For
290 // the darwin format it produces the same output as darwin's nm(1) -m output
292 // darwin's nm(1) -x format.
519 // Table that maps Darwin's Mach-O stab constants to strings to allow printing.
677 OutputFormat != darwin)) && OutputFormat != posix) {
704 // If OutputFormat is darwin or we are printing Mach-O symbols in hex and
705 // we have a MachOObjectFile, call darwinPrintSymbol to print as darwin's
706 // nm(1) -m output or hex, else if OutputFormat is darwin or we are
710 if ((OutputFormat == darwin || FormatMachOasHex) && (MachO || Obj.isIR())) {
719 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) {
1388 OutputFormat = darwin;