Lines Matching refs:normalized

10 /// \file These data structures comprise the "normalized" view of
11 /// mach-o object files. The normalized view is an in-memory only data structure
14 /// The normalized view easily converts to and from YAML using YAML I/O.
16 /// The normalized view converts to and from binary mach-o object files using
19 /// The normalized view converts to and from lld::Atoms using the
31 /// | normalized | <-> | yaml |
74 namespace normalized {
79 /// normalized form has the union of all possible fields.
111 /// Mach-O has a 32-bit and 64-bit section record. This normalized form
136 /// type and scope and mixed in the same n_type field. This normalized form
163 /// Segments are only used in normalized final linked images (not in relocatable
173 /// Only used in normalized final linked images to specify on which dylibs
182 /// A normalized rebasing entry. Only used in normalized final linked images.
189 /// A normalized binding entry. Only used in normalized final linked images.
203 /// A normalized export entry. Only used in normalized final linked images.
213 /// A normalized data-in-code entry.
282 /// Reads a mach-o file and produces an in-memory normalized view.
287 /// Takes in-memory normalized view and writes a mach-o object file.
294 /// Parses a yaml encoded mach-o file to produce an in-memory normalized view.
298 /// Writes a yaml encoded mach-o files given an in-memory normalized view.
311 /// Takes in-memory normalized dylib or object and parses it into lld::File
316 /// Takes atoms and generates a normalized macho-o view.
321 } // namespace normalized