blob: e58fd0a390fedfea4735294d5af1477be3f8a0f1 [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 Srbecky6d8c8f02015-10-26 10:57:09 +000022#include "elf_builder.h"
David Srbecky527c9c72015-04-17 21:14:10 +010023#include "dwarf/dwarf_constants.h"
David Srbecky3b9d57a2015-04-10 00:22:14 +010024#include "oat_writer.h"
25
26namespace art {
27namespace dwarf {
28
David Srbecky6d8c8f02015-10-26 10:57:09 +000029template<typename ElfTypes>
30void WriteCFISection(ElfBuilder<ElfTypes>* builder,
31 const std::vector<OatWriter::DebugInfo>& method_infos,
32 CFIFormat format);
David Srbecky8dc73242015-04-12 11:40:39 +010033
David Srbecky6d8c8f02015-10-26 10:57:09 +000034template<typename ElfTypes>
35void WriteDebugSections(ElfBuilder<ElfTypes>* builder,
36 const std::vector<OatWriter::DebugInfo>& method_infos);
David Srbecky3b9d57a2015-04-10 00:22:14 +010037
38} // namespace dwarf
39} // namespace art
40
41#endif // ART_COMPILER_ELF_WRITER_DEBUG_H_