Searched refs:dump_path (Results 1 – 13 of 13) sorted by relevance
29 IRDumper(const std::string &dump_path) : dump_path_(dump_path) {} in IRDumper() argument34 TextFormatIR text_format, const std::string &dump_path);
32 IRDiffDumper(const std::string &dump_path) : dump_path_(dump_path) {} in IRDiffDumper() argument57 TextFormatIR, const std::string &dump_path);
31 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDiffDumper() argument34 return CreateProtobufIRDiffDumper(dump_path); in CreateIRDiffDumper()
33 TextFormatIR text_format, const std::string &dump_path) { in CreateIRDumper() argument36 return CreateProtobufIRDumper(dump_path); in CreateIRDumper()38 return CreateJsonIRDumper(dump_path); in CreateIRDumper()
32 std::unique_ptr<IRDumper> CreateProtobufIRDumper(const std::string &dump_path);38 const std::string &dump_path);
60 ProtobufIRDumper(const std::string &dump_path) in ProtobufIRDumper() argument61 : IRDumper(dump_path), tu_ptr_(new abi_dump::TranslationUnit()) {} in ProtobufIRDumper()
32 ProtobufIRDiffDumper(const std::string &dump_path) in ProtobufIRDiffDumper() argument33 : IRDiffDumper(dump_path), in ProtobufIRDiffDumper()
372 const std::string &dump_path) { in CreateProtobufIRDiffDumper() argument373 return std::make_unique<ProtobufIRDiffDumper>(dump_path); in CreateProtobufIRDiffDumper()
495 std::unique_ptr<IRDumper> CreateProtobufIRDumper(const std::string &dump_path) { in CreateProtobufIRDumper() argument496 return std::make_unique<ProtobufIRDumper>(dump_path); in CreateProtobufIRDumper()
31 std::unique_ptr<IRDumper> CreateJsonIRDumper(const std::string &dump_path);
409 JsonIRDumper::JsonIRDumper(const std::string &dump_path) in JsonIRDumper() argument410 : IRDumper(dump_path), translation_unit_() { in JsonIRDumper()431 std::unique_ptr<IRDumper> CreateJsonIRDumper(const std::string &dump_path) { in CreateJsonIRDumper() argument432 return std::make_unique<JsonIRDumper>(dump_path); in CreateJsonIRDumper()
84 JsonIRDumper(const std::string &dump_path);
29 dump_path = os.path.join(dump_dir, module.get_dump_name())30 with open(dump_path, 'w') as f:33 return dump_path