Lines Matching refs:config
93 self.config = None
97 self.config = self.args.parse_args(argv)
140 index_file_parser.parse(self.config.file)
142 with open(self.config.output, "w") as output_file:
151 if self.config.deps:
152 with open(self.config.deps, "w") as deps_file:
153 deps = [self.config.file] + index_file_parser.get_dependencies(self.config.file)
154 deps_file.write(self.config.output + ": " + " \\\n".join(deps) + "\n")
175 index_file_parser.parse(self.config.file)
177 with open(self.config.output, "w") as output_file:
179 bti = "_bti" if self.config.bti == 1 else ""
194 index_file_parser.parse(self.config.file)
221 index_file_parser.parse(self.config.file)
223 bti = "_bti" if self.config.bti == 1 else ""
233 if not self.config.list:
236 function_offset = item_index * (8 if self.config.bti else 4)
241 if self.config.list:
242 print(self.config.b + "/wrappers.s")
244 with open(self.config.b + "/wrappers.s", "w") as asm_file:
262 symbols = subprocess.check_output(["nm", "-a", self.config.file])
266 raise Exception("No '.text' section was found in %s" % self.config.file)
270 with open(self.config.output, "w") as output_file: