blob: a1624d79a7da0340816c42498c37c5c0b6f81314 [file] [log] [blame]
Logan Chien7e6e33d2012-01-31 09:22:09 +08001/*
2 * Copyright (C) 2011 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_SRC_UTILS_LLVM_H_
18#define ART_SRC_UTILS_LLVM_H_
19
20#include "object.h"
21
22#include <string>
23
24namespace art {
25
26// Performs LLVM name mangling (similar to MangleForJni with additional '<' and
27// '>' being mangled).
28std::string MangleForLLVM(const std::string& s);
29
30// Returns the LLVM function name for the non-overloaded method 'm'.
31std::string LLVMShortName(const Method* m);
32
33// Returns the LLVM function name for the overloaded method 'm'.
34std::string LLVMLongName(const Method* m);
35
36} // namespace art
37
38#endif // ART_SRC_UTILS_LLVM_H_