Home
last modified time | relevance | path

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

/art/compiler/utils/
Dassembler_test_base.h190 bool Assemble(const std::string& asm_file, const std::string& obj_file) { in Assemble() argument
192 args.insert(args.end(), {"-o", obj_file, asm_file}); in Assemble()
201 bool Disassemble(const std::string& obj_file, std::string* output) { in Disassemble() argument
203 args.insert(args.end(), {obj_file}); in Disassemble()
Dassembler_thumb_test.cc52 std::string obj_file = scratch_dir_->GetPath() + testname + ".o"; in DumpAndCheck() local
53 WriteElf</*IsElf64=*/false>(obj_file, InstructionSet::kThumb2, code); in DumpAndCheck()
55 ASSERT_TRUE(Disassemble(obj_file, &disassembly)); in DumpAndCheck()
63 obj_file + ": file format elf32-littlearm\n\n" in DumpAndCheck()