1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "dwarf_test.h"
#include "dwarf/debug_frame_opcode_writer.h"
#include "dwarf/debug_info_entry_writer.h"
#include "dwarf/debug_line_opcode_writer.h"
#include "dwarf/dwarf_constants.h"
#include "dwarf/headers.h"
#include "gtest/gtest.h"
namespace art {
namespace dwarf {
// Run the tests only on host since we need objdump.
#ifndef ART_TARGET_ANDROID
TEST_F(DwarfTest, DebugFrame) {
const bool is64bit = false;
// Pick offset value which would catch Uleb vs Sleb errors.
const int offset = 40000;
ASSERT_EQ(UnsignedLeb128Size(offset / 4), 2u);
ASSERT_EQ(SignedLeb128Size(offset / 4), 3u);
DW_CHECK("Data alignment factor: -4");
const Reg reg(6);
// Test the opcodes in the order mentioned in the spec.
// There are usually several encoding variations of each opcode.
DebugFrameOpCodeWriter<> opcodes;
DW_CHECK("FDE");
int pc = 0;
for (int i : {0, 1, 0x3F, 0x40, 0xFF, 0x100, 0xFFFF, 0x10000}) {
pc += i;
opcodes.AdvancePC(pc);
}
DW_CHECK_NEXT("DW_CFA_advance_loc: 1 to 01000001");
DW_CHECK_NEXT("DW_CFA_advance_loc: 63 to 01000040");
DW_CHECK_NEXT("DW_CFA_advance_loc1: 64 to 01000080");
DW_CHECK_NEXT("DW_CFA_advance_loc1: 255 to 0100017f");
DW_CHECK_NEXT("DW_CFA_advance_loc2: 256 to 0100027f");
DW_CHECK_NEXT("DW_CFA_advance_loc2: 65535 to 0101027e");
DW_CHECK_NEXT("DW_CFA_advance_loc4: 65536 to 0102027e");
opcodes.DefCFA(reg, offset);
DW_CHECK_NEXT("DW_CFA_def_cfa: r6 (esi) ofs 40000");
opcodes.DefCFA(reg, -offset);
DW_CHECK_NEXT("DW_CFA_def_cfa_sf: r6 (esi) ofs -40000");
opcodes.DefCFARegister(reg);
DW_CHECK_NEXT("DW_CFA_def_cfa_register: r6 (esi)");
opcodes.DefCFAOffset(offset);
DW_CHECK_NEXT("DW_CFA_def_cfa_offset: 40000");
opcodes.DefCFAOffset(-offset);
DW_CHECK_NEXT("DW_CFA_def_cfa_offset_sf: -40000");
uint8_t expr[] = { 0 };
opcodes.DefCFAExpression(expr, arraysize(expr));
DW_CHECK_NEXT("DW_CFA_def_cfa_expression");
opcodes.Undefined(reg);
DW_CHECK_NEXT("DW_CFA_undefined: r6 (esi)");
opcodes.SameValue(reg);
DW_CHECK_NEXT("DW_CFA_same_value: r6 (esi)");
opcodes.Offset(Reg(0x3F), -offset);
DW_CHECK_NEXT("DW_CFA_offset: r63 at cfa-40000");
opcodes.Offset(Reg(0x40), -offset);
DW_CHECK_NEXT("DW_CFA_offset_extended: r64 at cfa-40000");
opcodes.Offset(Reg(0x40), offset);
DW_CHECK_NEXT("DW_CFA_offset_extended_sf: r64 at cfa+40000");
opcodes.ValOffset(reg, -offset);
DW_CHECK_NEXT("DW_CFA_val_offset: r6 (esi) at cfa-40000");
opcodes.ValOffset(reg, offset);
DW_CHECK_NEXT("DW_CFA_val_offset_sf: r6 (esi) at cfa+40000");
opcodes.Register(reg, Reg(1));
DW_CHECK_NEXT("DW_CFA_register: r6 (esi) in r1 (ecx)");
opcodes.Expression(reg, expr, arraysize(expr));
DW_CHECK_NEXT("DW_CFA_expression: r6 (esi)");
opcodes.ValExpression(reg, expr, arraysize(expr));
DW_CHECK_NEXT("DW_CFA_val_expression: r6 (esi)");
opcodes.Restore(Reg(0x3F));
DW_CHECK_NEXT("DW_CFA_restore: bad register: r63");
opcodes.Restore(Reg(0x40));
DW_CHECK_NEXT("DW_CFA_restore_extended: bad register: r64");
opcodes.Restore(reg);
DW_CHECK_NEXT("DW_CFA_restore: r6 (esi)");
opcodes.RememberState();
DW_CHECK_NEXT("DW_CFA_remember_state");
opcodes.RestoreState();
DW_CHECK_NEXT("DW_CFA_restore_state");
opcodes.Nop();
DW_CHECK_NEXT("DW_CFA_nop");
// Also test helpers.
opcodes.DefCFA(Reg(4), 100); // ESP
DW_CHECK_NEXT("DW_CFA_def_cfa: r4 (esp) ofs 100");
opcodes.AdjustCFAOffset(8);
DW_CHECK_NEXT("DW_CFA_def_cfa_offset: 108");
opcodes.RelOffset(Reg(0), 0); // push R0
DW_CHECK_NEXT("DW_CFA_offset: r0 (eax) at cfa-108");
opcodes.RelOffset(Reg(1), 4); // push R1
DW_CHECK_NEXT("DW_CFA_offset: r1 (ecx) at cfa-104");
opcodes.RelOffsetForMany(Reg(2), 8, 1 | (1 << 3), 4); // push R2 and R5
DW_CHECK_NEXT("DW_CFA_offset: r2 (edx) at cfa-100");
DW_CHECK_NEXT("DW_CFA_offset: r5 (ebp) at cfa-96");
opcodes.RestoreMany(Reg(2), 1 | (1 << 3)); // pop R2 and R5
DW_CHECK_NEXT("DW_CFA_restore: r2 (edx)");
DW_CHECK_NEXT("DW_CFA_restore: r5 (ebp)");
DebugFrameOpCodeWriter<> initial_opcodes;
WriteCIE(is64bit, Reg(is64bit ? 16 : 8), initial_opcodes, &debug_frame_data_);
WriteFDE(is64bit,
/* cie_pointer= */ 0,
0x01000000,
0x01000000,
ArrayRef<const uint8_t>(*opcodes.data()),
&debug_frame_data_);
CheckObjdumpOutput(is64bit, "-W");
}
TEST_F(DwarfTest, DISABLED_DebugFrame64) {
constexpr bool is64bit = true;
DebugFrameOpCodeWriter<> initial_opcodes;
WriteCIE(is64bit, Reg(16), initial_opcodes, &debug_frame_data_);
DebugFrameOpCodeWriter<> opcodes;
WriteFDE(is64bit,
/* cie_pointer= */ 0,
0x0100000000000000,
0x0200000000000000,
ArrayRef<const uint8_t>(*opcodes.data()),
&debug_frame_data_);
DW_CHECK("FDE cie=00000000 pc=100000000000000..300000000000000");
CheckObjdumpOutput(is64bit, "-W");
}
// Test x86_64 register mapping. It is the only non-trivial architecture.
// ARM, X86, and Mips have: dwarf_reg = art_reg + constant.
TEST_F(DwarfTest, x86_64_RegisterMapping) {
constexpr bool is64bit = true;
DebugFrameOpCodeWriter<> opcodes;
for (int i = 0; i < 16; i++) {
opcodes.RelOffset(Reg::X86_64Core(i), 0);
}
DW_CHECK("FDE");
DW_CHECK_NEXT("DW_CFA_offset: r0 (rax)");
DW_CHECK_NEXT("DW_CFA_offset: r2 (rcx)");
DW_CHECK_NEXT("DW_CFA_offset: r1 (rdx)");
DW_CHECK_NEXT("DW_CFA_offset: r3 (rbx)");
DW_CHECK_NEXT("DW_CFA_offset: r7 (rsp)");
DW_CHECK_NEXT("DW_CFA_offset: r6 (rbp)");
DW_CHECK_NEXT("DW_CFA_offset: r4 (rsi)");
DW_CHECK_NEXT("DW_CFA_offset: r5 (rdi)");
DW_CHECK_NEXT("DW_CFA_offset: r8 (r8)");
DW_CHECK_NEXT("DW_CFA_offset: r9 (r9)");
DW_CHECK_NEXT("DW_CFA_offset: r10 (r10)");
DW_CHECK_NEXT("DW_CFA_offset: r11 (r11)");
DW_CHECK_NEXT("DW_CFA_offset: r12 (r12)");
DW_CHECK_NEXT("DW_CFA_offset: r13 (r13)");
DW_CHECK_NEXT("DW_CFA_offset: r14 (r14)");
DW_CHECK_NEXT("DW_CFA_offset: r15 (r15)");
DebugFrameOpCodeWriter<> initial_opcodes;
WriteCIE(is64bit, Reg(16), initial_opcodes, &debug_frame_data_);
WriteFDE(is64bit,
/* cie_pointer= */ 0,
0x0100000000000000,
0x0200000000000000,
ArrayRef<const uint8_t>(*opcodes.data()),
&debug_frame_data_);
CheckObjdumpOutput(is64bit, "-W");
}
TEST_F(DwarfTest, DISABLED_DebugLine) {
const bool is64bit = false;
const int code_factor_bits = 1;
DebugLineOpCodeWriter<> opcodes(is64bit, code_factor_bits);
std::vector<std::string> include_directories;
include_directories.push_back("/path/to/source");
DW_CHECK("/path/to/source");
std::vector<FileEntry> files {
{ "file0.c", 0, 1000, 2000 },
{ "file1.c", 1, 1000, 2000 },
{ "file2.c", 1, 1000, 2000 },
};
DW_CHECK("1\t0\t1000\t2000\tfile0.c");
DW_CHECK_NEXT("2\t1\t1000\t2000\tfile1.c");
DW_CHECK_NEXT("3\t1\t1000\t2000\tfile2.c");
DW_CHECK("Line Number Statements");
opcodes.SetAddress(0x01000000);
DW_CHECK_NEXT("Extended opcode 2: set Address to 0x1000000");
opcodes.AddRow();
DW_CHECK_NEXT("Copy");
opcodes.AdvancePC(0x01000100);
DW_CHECK_NEXT("Advance PC by 256 to 0x1000100");
opcodes.SetFile(2);
DW_CHECK_NEXT("Set File Name to entry 2 in the File Name Table");
opcodes.AdvanceLine(3);
DW_CHECK_NEXT("Advance Line by 2 to 3");
opcodes.SetColumn(4);
DW_CHECK_NEXT("Set column to 4");
opcodes.SetIsStmt(true);
DW_CHECK_NEXT("Set is_stmt to 1");
opcodes.SetIsStmt(false);
DW_CHECK_NEXT("Set is_stmt to 0");
opcodes.SetBasicBlock();
DW_CHECK_NEXT("Set basic block");
opcodes.SetPrologueEnd();
DW_CHECK_NEXT("Set prologue_end to true");
opcodes.SetEpilogueBegin();
DW_CHECK_NEXT("Set epilogue_begin to true");
opcodes.SetISA(5);
DW_CHECK_NEXT("Set ISA to 5");
opcodes.EndSequence();
DW_CHECK_NEXT("Extended opcode 1: End of Sequence");
opcodes.DefineFile("file.c", 0, 1000, 2000);
DW_CHECK_NEXT("Extended opcode 3: define new File Table entry");
DW_CHECK_NEXT("Entry\tDir\tTime\tSize\tName");
DW_CHECK_NEXT("1\t0\t1000\t2000\tfile.c");
WriteDebugLineTable(include_directories, files, opcodes, &debug_line_data_);
CheckObjdumpOutput(is64bit, "-W");
}
// DWARF has special one byte codes which advance PC and line at the same time.
TEST_F(DwarfTest, DebugLineSpecialOpcodes) {
const bool is64bit = false;
const int code_factor_bits = 1;
uint32_t pc = 0x01000000;
int line = 1;
DebugLineOpCodeWriter<> opcodes(is64bit, code_factor_bits);
opcodes.SetAddress(pc);
size_t num_rows = 0;
DW_CHECK("Line Number Statements:");
DW_CHECK("Special opcode");
DW_CHECK("Advance PC by constant");
DW_CHECK("Decoded dump of debug contents of section .debug_line:");
DW_CHECK("Line number Starting address");
for (int addr_delta = 0; addr_delta < 80; addr_delta += 2) {
for (int line_delta = 16; line_delta >= -16; --line_delta) {
pc += addr_delta;
line += line_delta;
opcodes.AddRow(pc, line);
num_rows++;
ASSERT_EQ(opcodes.CurrentAddress(), pc);
ASSERT_EQ(opcodes.CurrentLine(), line);
char expected[1024];
sprintf(expected, "%i 0x%x", line, pc);
DW_CHECK_NEXT(expected);
}
}
EXPECT_LT(opcodes.data()->size(), num_rows * 3);
std::vector<std::string> directories;
std::vector<FileEntry> files = { { "file.c", 0, 1000, 2000 } };
WriteDebugLineTable(directories, files, opcodes, &debug_line_data_);
CheckObjdumpOutput(is64bit, "-W -WL");
}
TEST_F(DwarfTest, DebugInfo) {
constexpr bool is64bit = false;
DebugAbbrevWriter<> debug_abbrev(&debug_abbrev_data_);
DebugInfoEntryWriter<> info(is64bit, &debug_abbrev);
DW_CHECK("Contents of the .debug_info section:");
info.StartTag(dwarf::DW_TAG_compile_unit);
DW_CHECK("Abbrev Number: 1 (DW_TAG_compile_unit)");
info.WriteStrp(dwarf::DW_AT_producer, "Compiler name", &debug_str_data_);
DW_CHECK_NEXT("DW_AT_producer : (indirect string, offset: 0x0): Compiler name");
info.WriteAddr(dwarf::DW_AT_low_pc, 0x01000000);
DW_CHECK_NEXT("DW_AT_low_pc : 0x1000000");
info.WriteAddr(dwarf::DW_AT_high_pc, 0x02000000);
DW_CHECK_NEXT("DW_AT_high_pc : 0x2000000");
info.StartTag(dwarf::DW_TAG_subprogram);
DW_CHECK("Abbrev Number: 2 (DW_TAG_subprogram)");
info.WriteStrp(dwarf::DW_AT_name, "Foo", &debug_str_data_);
DW_CHECK_NEXT("DW_AT_name : (indirect string, offset: 0xe): Foo");
info.WriteAddr(dwarf::DW_AT_low_pc, 0x01010000);
DW_CHECK_NEXT("DW_AT_low_pc : 0x1010000");
info.WriteAddr(dwarf::DW_AT_high_pc, 0x01020000);
DW_CHECK_NEXT("DW_AT_high_pc : 0x1020000");
info.EndTag(); // DW_TAG_subprogram
info.StartTag(dwarf::DW_TAG_subprogram);
DW_CHECK("Abbrev Number: 2 (DW_TAG_subprogram)");
info.WriteStrp(dwarf::DW_AT_name, "Bar", &debug_str_data_);
DW_CHECK_NEXT("DW_AT_name : (indirect string, offset: 0x12): Bar");
info.WriteAddr(dwarf::DW_AT_low_pc, 0x01020000);
DW_CHECK_NEXT("DW_AT_low_pc : 0x1020000");
info.WriteAddr(dwarf::DW_AT_high_pc, 0x01030000);
DW_CHECK_NEXT("DW_AT_high_pc : 0x1030000");
info.EndTag(); // DW_TAG_subprogram
info.EndTag(); // DW_TAG_compile_unit
// Test that previous list was properly terminated and empty children.
info.StartTag(dwarf::DW_TAG_compile_unit);
info.EndTag(); // DW_TAG_compile_unit
// The abbrev table is just side product, but check it as well.
DW_CHECK("Abbrev Number: 3 (DW_TAG_compile_unit)");
DW_CHECK("Contents of the .debug_abbrev section:");
DW_CHECK("1 DW_TAG_compile_unit [has children]");
DW_CHECK_NEXT("DW_AT_producer DW_FORM_strp");
DW_CHECK_NEXT("DW_AT_low_pc DW_FORM_addr");
DW_CHECK_NEXT("DW_AT_high_pc DW_FORM_addr");
DW_CHECK("2 DW_TAG_subprogram [no children]");
DW_CHECK_NEXT("DW_AT_name DW_FORM_strp");
DW_CHECK_NEXT("DW_AT_low_pc DW_FORM_addr");
DW_CHECK_NEXT("DW_AT_high_pc DW_FORM_addr");
DW_CHECK("3 DW_TAG_compile_unit [no children]");
dwarf::WriteDebugInfoCU(/* debug_abbrev_offset= */ 0, info, &debug_info_data_);
CheckObjdumpOutput(is64bit, "-W");
}
#endif // ART_TARGET_ANDROID
} // namespace dwarf
} // namespace art
|