blob: fb4da34ff60490260fd100a5520986f2fafd9c64 [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
Shih-wei Liao5b8b1ed2012-02-23 23:48:21 -080036// Returns the LLVM stub function name for the overloaded method 'm'.
37std::string LLVMStubName(const Method* m);
38
39void LLVMLinkLoadMethod(const std::string& file_name, Method* method);
Logan Chien7e6e33d2012-01-31 09:22:09 +080040} // namespace art
41
42#endif // ART_SRC_UTILS_LLVM_H_