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

Lines Matching refs:OutputFormat

40 OutputFormat("format", cl::desc("Specify output format"),
202 /// This is when used when @c OutputFormat is darwin and produces the same
277 /// This is when used when @c OutputFormat is berkeley with a Mach-O file and
352 /// The format used is determined by @c OutputFormat and @c Radix.
359 // If OutputFormat is darwin and we have a MachOObjectFile print as darwin's
360 // size(1) -m output, else if OutputFormat is darwin and not a Mach-O object
361 // let it fall through to OutputFormat berkeley.
363 if (OutputFormat == darwin && MachO)
365 // If we have a MachOObjectFile and the OutputFormat is berkeley print as
367 else if (MachO && OutputFormat == berkeley)
369 else if (OutputFormat == sysv) {
542 if (OutputFormat == sysv)
544 else if (MachO && OutputFormat == darwin)
547 if (OutputFormat == berkeley) {
574 if (OutputFormat == sysv)
576 else if (MachO && OutputFormat == darwin) {
582 if (OutputFormat == berkeley) {
612 if (OutputFormat == sysv)
615 else if (MachO && OutputFormat == darwin)
621 if (OutputFormat == berkeley) {
665 if (OutputFormat == sysv)
667 else if (MachO && OutputFormat == darwin) {
673 if (OutputFormat == berkeley) {
699 if (OutputFormat == sysv)
702 else if (MachO && OutputFormat == darwin)
707 if (OutputFormat == berkeley) {
739 if (OutputFormat == sysv)
741 else if (MachO && OutputFormat == darwin) {
748 if (OutputFormat == berkeley) {
775 if (OutputFormat == sysv)
778 else if (MachO && OutputFormat == darwin)
782 if (OutputFormat == berkeley) {
805 if (OutputFormat == sysv)
808 if (OutputFormat == berkeley) {
819 if (OutputFormat == sysv)
833 OutputFormat = static_cast<OutputFormatTy>(OutputFormatShort);