HomeSort by relevance Sort by last modified time
    Searched refs:Objdump (Results 1 - 3 of 3) sorted by null

  /art/compiler/dwarf/
dwarf_test.h 51 // Check that the objdump output contains given output.
57 // Pretty-print the generated DWARF data using objdump.
59 std::vector<std::string> Objdump(const char* args) {
95 // Read the elf file back using objdump.
98 cmd = cmd + "objdump " + args + " " + file.GetFilename() + " 2>&1";
107 EXPECT_TRUE(strstr(line, "objdump: Error:") == nullptr) << line;
108 EXPECT_TRUE(strstr(line, "objdump: Warning:") == nullptr) << line;
120 std::vector<std::string> Objdump(bool is64bit, const char* args) {
122 return Objdump<ElfTypes64>(args);
124 return Objdump<ElfTypes32>(args)
    [all...]
  /art/compiler/
cfi_test.h 56 ReformatCfi(Objdump(false, "-W"), &lines);
98 // Find interesting parts of objdump output and prefix the lines with address.
110 // "bad register" warning is caused by always using host (x86) objdump.
  /art/compiler/utils/
assembler_test_base.h 45 std::string objdump,
54 objdump_cmd_name_(objdump),
78 LOG(INFO) << "Chosen objdump command: " << GetObjdumpCommand();
149 // Return the host objdump command for this test.
227 // Runs objdump -h on the binary file and extracts the first line with .text.
229 std::string Objdump(std::string file) {
231 EXPECT_TRUE(have_objdump) << "Cannot find objdump: " << GetObjdumpCommand();
381 std::string odump = Objdump(res->base_name + ".o");
383 res->error_msg = "Objdump failed.";
393 res->error_msg = "Objdump output not recognized: too few tokens."
    [all...]

Completed in 2336 milliseconds