Home
last modified time | relevance | path

Searched refs:obj_file (Results 1 – 2 of 2) sorted by relevance

/art/compiler/utils/
Dassembler_test_base.h159 bool Assemble(const std::string& asm_file, const std::string& obj_file) { in Assemble() argument
161 args.insert(args.end(), {"-o", obj_file, asm_file}); in Assemble()
170 bool Disassemble(const std::string& obj_file, std::string* output) { in Disassemble() argument
172 args.insert(args.end(), {obj_file}); in Disassemble()
Dassembler_thumb_test.cc51 std::string obj_file = scratch_dir_->GetPath() + testname + ".o"; in DumpAndCheck() local
52 WriteElf</*IsElf64=*/false>(obj_file, InstructionSet::kThumb2, code); in DumpAndCheck()
54 ASSERT_TRUE(Disassemble(obj_file, &disassembly)); in DumpAndCheck()
62 obj_file + ": file format ELF32-arm-little\n\n\n" in DumpAndCheck()