blob: 69f7e0d8117ba2d2fe7ffc3eeb2d750b9e4ca0da [file] [log] [blame]
David Srbecky3b9d57a2015-04-10 00:22:14 +01001/*
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_COMPILER_ELF_WRITER_DEBUG_H_
18#define ART_COMPILER_ELF_WRITER_DEBUG_H_
19
20#include <vector>
21
David Srbecky527c9c72015-04-17 21:14:10 +010022#include "dwarf/dwarf_constants.h"
David Srbecky3b9d57a2015-04-10 00:22:14 +010023#include "oat_writer.h"
24
25namespace art {
26namespace dwarf {
27
David Srbeckyad5fa8c2015-05-06 18:27:35 +010028void WriteCFISection(const CompilerDriver* compiler,
29 const OatWriter* oat_writer,
30 ExceptionHeaderValueApplication address_type,
31 CFIFormat format,
32 std::vector<uint8_t>* debug_frame,
33 std::vector<uintptr_t>* debug_frame_patches,
34 std::vector<uint8_t>* eh_frame_hdr,
35 std::vector<uintptr_t>* eh_frame_hdr_patches);
David Srbecky8dc73242015-04-12 11:40:39 +010036
David Srbecky3b9d57a2015-04-10 00:22:14 +010037void WriteDebugSections(const CompilerDriver* compiler,
David Srbecky527c9c72015-04-17 21:14:10 +010038 const OatWriter* oat_writer,
David Srbecky8dc73242015-04-12 11:40:39 +010039 std::vector<uint8_t>* debug_info,
David Srbecky527c9c72015-04-17 21:14:10 +010040 std::vector<uintptr_t>* debug_info_patches,
David Srbecky8dc73242015-04-12 11:40:39 +010041 std::vector<uint8_t>* debug_abbrev,
42 std::vector<uint8_t>* debug_str,
David Srbecky527c9c72015-04-17 21:14:10 +010043 std::vector<uint8_t>* debug_line,
44 std::vector<uintptr_t>* debug_line_patches);
David Srbecky3b9d57a2015-04-10 00:22:14 +010045
46} // namespace dwarf
47} // namespace art
48
49#endif // ART_COMPILER_ELF_WRITER_DEBUG_H_