1 /*
2  * Copyright (C) 2015 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef ART_LIBELFFILE_DWARF_HEADERS_H_
18 #define ART_LIBELFFILE_DWARF_HEADERS_H_
19 
20 #include <cstdint>
21 
22 #include "base/array_ref.h"
23 #include "dwarf/debug_frame_opcode_writer.h"
24 #include "dwarf/debug_info_entry_writer.h"
25 #include "dwarf/debug_line_opcode_writer.h"
26 #include "dwarf/dwarf_constants.h"
27 #include "dwarf/register.h"
28 #include "dwarf/writer.h"
29 
30 namespace art {
31 namespace dwarf {
32 
33 // Note that all headers start with 32-bit length.
34 // DWARF also supports 64-bit lengths, but we never use that.
35 // It is intended to support very large debug sections (>4GB),
36 // and compilers are expected *not* to use it by default.
37 // In particular, it is not related to machine architecture.
38 
39 // Write common information entry (CIE) to .debug_frame or .eh_frame section.
40 template<typename Vector>
WriteCIE(bool is64bit,Reg return_address_register,const DebugFrameOpCodeWriter<Vector> & opcodes,std::vector<uint8_t> * buffer)41 void WriteCIE(bool is64bit,
42               Reg return_address_register,
43               const DebugFrameOpCodeWriter<Vector>& opcodes,
44               std::vector<uint8_t>* buffer) {
45   static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type");
46 
47   Writer<> writer(buffer);
48   size_t cie_header_start_ = writer.data()->size();
49   writer.PushUint32(0);  // Length placeholder.
50   writer.PushUint32(0xFFFFFFFF);  // CIE id.
51   writer.PushUint8(4);                // Version.
52   writer.PushString("");              // Augmentation.
53   writer.PushUint8(is64bit ? 8 : 4);  // Address size.
54   writer.PushUint8(0);                // Segment size.
55   writer.PushUleb128(DebugFrameOpCodeWriter<Vector>::kCodeAlignmentFactor);
56   writer.PushSleb128(DebugFrameOpCodeWriter<Vector>::kDataAlignmentFactor);
57   writer.PushUleb128(return_address_register.num());  // ubyte in DWARF2.
58   writer.PushData(opcodes.data());
59   writer.Pad(is64bit ? 8 : 4);
60   writer.UpdateUint32(cie_header_start_, writer.data()->size() - cie_header_start_ - 4);
61 }
62 
63 // Write frame description entry (FDE) to .debug_frame or .eh_frame section.
64 inline
WriteFDE(bool is64bit,uint64_t cie_pointer,uint64_t code_address,uint64_t code_size,const ArrayRef<const uint8_t> & opcodes,std::vector<uint8_t> * buffer)65 void WriteFDE(bool is64bit,
66               uint64_t cie_pointer,  // Offset of relevant CIE in debug_frame setcion.
67               uint64_t code_address,
68               uint64_t code_size,
69               const ArrayRef<const uint8_t>& opcodes,
70               /*inout*/ std::vector<uint8_t>* buffer) {
71   Writer<> writer(buffer);
72   size_t fde_header_start = writer.data()->size();
73   writer.PushUint32(0);  // Length placeholder.
74   writer.PushUint32(cie_pointer);
75   // Relocate code_address if it has absolute value.
76   if (is64bit) {
77     writer.PushUint64(code_address);
78     writer.PushUint64(code_size);
79   } else {
80     writer.PushUint32(code_address);
81     writer.PushUint32(code_size);
82   }
83   writer.PushUleb128(0);  // Augmentation data size.
84   writer.PushData(opcodes.data(), opcodes.size());
85   writer.Pad(is64bit ? 8 : 4);
86   writer.UpdateUint32(fde_header_start, writer.data()->size() - fde_header_start - 4);
87 }
88 
89 // Write compilation unit (CU) to .debug_info section.
90 template<typename Vector>
WriteDebugInfoCU(uint32_t debug_abbrev_offset,const DebugInfoEntryWriter<Vector> & entries,std::vector<uint8_t> * debug_info)91 void WriteDebugInfoCU(uint32_t debug_abbrev_offset,
92                       const DebugInfoEntryWriter<Vector>& entries,
93                       std::vector<uint8_t>* debug_info) {
94   static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type");
95 
96   Writer<> writer(debug_info);
97   size_t start = writer.data()->size();
98   writer.PushUint32(0);  // Length placeholder.
99   writer.PushUint16(4);  // Version.
100   writer.PushUint32(debug_abbrev_offset);
101   writer.PushUint8(entries.Is64bit() ? 8 : 4);
102   size_t entries_offset = writer.data()->size();
103   DCHECK_EQ(entries_offset, DebugInfoEntryWriter<Vector>::kCompilationUnitHeaderSize);
104   writer.PushData(entries.data());
105   writer.UpdateUint32(start, writer.data()->size() - start - 4);
106 }
107 
108 struct FileEntry {
109   std::string file_name;
110   int directory_index;
111   int modification_time;
112   int file_size;
113 };
114 
115 // Write line table to .debug_line section.
116 template<typename Vector>
WriteDebugLineTable(const std::vector<std::string> & include_directories,const std::vector<FileEntry> & files,const DebugLineOpCodeWriter<Vector> & opcodes,std::vector<uint8_t> * debug_line)117 void WriteDebugLineTable(const std::vector<std::string>& include_directories,
118                          const std::vector<FileEntry>& files,
119                          const DebugLineOpCodeWriter<Vector>& opcodes,
120                          std::vector<uint8_t>* debug_line) {
121   static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type");
122 
123   Writer<> writer(debug_line);
124   size_t header_start = writer.data()->size();
125   writer.PushUint32(0);  // Section-length placeholder.
126   writer.PushUint16(3);  // .debug_line version.
127   size_t header_length_pos = writer.data()->size();
128   writer.PushUint32(0);  // Header-length placeholder.
129   writer.PushUint8(1 << opcodes.GetCodeFactorBits());
130   writer.PushUint8(DebugLineOpCodeWriter<Vector>::kDefaultIsStmt ? 1 : 0);
131   writer.PushInt8(DebugLineOpCodeWriter<Vector>::kLineBase);
132   writer.PushUint8(DebugLineOpCodeWriter<Vector>::kLineRange);
133   writer.PushUint8(DebugLineOpCodeWriter<Vector>::kOpcodeBase);
134   static const int opcode_lengths[DebugLineOpCodeWriter<Vector>::kOpcodeBase] = {
135       0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1 };
136   for (int i = 1; i < DebugLineOpCodeWriter<Vector>::kOpcodeBase; i++) {
137     writer.PushUint8(opcode_lengths[i]);
138   }
139   for (const std::string& directory : include_directories) {
140     writer.PushData(directory.data(), directory.size() + 1);
141   }
142   writer.PushUint8(0);  // Terminate include_directories list.
143   for (const FileEntry& file : files) {
144     writer.PushData(file.file_name.data(), file.file_name.size() + 1);
145     writer.PushUleb128(file.directory_index);
146     writer.PushUleb128(file.modification_time);
147     writer.PushUleb128(file.file_size);
148   }
149   writer.PushUint8(0);  // Terminate file list.
150   writer.UpdateUint32(header_length_pos, writer.data()->size() - header_length_pos - 4);
151   writer.PushData(opcodes.data());
152   writer.UpdateUint32(header_start, writer.data()->size() - header_start - 4);
153 }
154 
155 }  // namespace dwarf
156 }  // namespace art
157 
158 #endif  // ART_LIBELFFILE_DWARF_HEADERS_H_
159