Logan Chien | 7e6e33d | 2012-01-31 09:22:09 +0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 24 | namespace art { |
| 25 | |
| 26 | // Performs LLVM name mangling (similar to MangleForJni with additional '<' and |
| 27 | // '>' being mangled). |
| 28 | std::string MangleForLLVM(const std::string& s); |
| 29 | |
| 30 | // Returns the LLVM function name for the non-overloaded method 'm'. |
| 31 | std::string LLVMShortName(const Method* m); |
| 32 | |
| 33 | // Returns the LLVM function name for the overloaded method 'm'. |
| 34 | std::string LLVMLongName(const Method* m); |
| 35 | |
Shih-wei Liao | 5b8b1ed | 2012-02-23 23:48:21 -0800 | [diff] [blame] | 36 | // Returns the LLVM stub function name for the overloaded method 'm'. |
| 37 | std::string LLVMStubName(const Method* m); |
| 38 | |
| 39 | void LLVMLinkLoadMethod(const std::string& file_name, Method* method); |
Logan Chien | 7e6e33d | 2012-01-31 09:22:09 +0800 | [diff] [blame] | 40 | } // namespace art |
| 41 | |
| 42 | #endif // ART_SRC_UTILS_LLVM_H_ |