blob: b3bce31e31a4086af0ade4f595309a6fbf64b283 [file] [log] [blame]
Stephen Hines932bc6e2011-07-27 16:26:26 -07001/*
Stephen Hines7cd4c492012-03-13 19:57:37 -07002 * Copyright 2011-2012, The Android Open Source Project
Stephen Hines932bc6e2011-07-27 16:26:26 -07003 *
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#include "bcinfo/BitcodeTranslator.h"
18
Stephen Hines7cd4c492012-03-13 19:57:37 -070019#include "bcinfo/BitcodeWrapper.h"
20
Stephen Hines932bc6e2011-07-27 16:26:26 -070021#include "BitReader_2_7/BitReader_2_7.h"
Logan Chienc7d67a72011-12-16 17:06:49 +080022#include "BitReader_3_0/BitReader_3_0.h"
Stephen Hines932bc6e2011-07-27 16:26:26 -070023
Stephen Hines8dbca8e2013-06-21 16:30:26 -070024#include "BitWriter_3_2/ReaderWriter_3_2.h"
25
David Grossbcb03e52017-05-11 13:57:07 -070026#include "StripUnkAttr/strip_unknown_attributes.h"
27
Stephen Hines932bc6e2011-07-27 16:26:26 -070028#define LOG_TAG "bcinfo"
Mark Salyzynd5c69012017-01-10 14:27:14 -080029#include <log/log.h>
Stephen Hines932bc6e2011-07-27 16:26:26 -070030
Stephen Hines932bc6e2011-07-27 16:26:26 -070031#include "llvm/Bitcode/BitstreamWriter.h"
32#include "llvm/Bitcode/ReaderWriter.h"
Stephen Hinesb730e232013-01-09 15:31:36 -080033#include "llvm/IR/LLVMContext.h"
34#include "llvm/IR/Module.h"
Stephen Hines932bc6e2011-07-27 16:26:26 -070035#include "llvm/Support/MemoryBuffer.h"
Shih-wei Liaoc73b5212012-03-05 09:51:44 -080036#include "llvm/Support/raw_ostream.h"
Stephen Hines932bc6e2011-07-27 16:26:26 -070037
38#include <cstdlib>
Chris Wailes881cda42014-06-23 11:27:41 -070039#include <climits>
Stephen Hines932bc6e2011-07-27 16:26:26 -070040
41namespace bcinfo {
42
43/**
44 * Define minimum and maximum target API versions. These correspond to the
45 * same API levels used by the standard Android SDK.
46 *
Logan Chienc7d67a72011-12-16 17:06:49 +080047 * LLVM 2.7
48 * 11 - Honeycomb
49 * 12 - Honeycomb MR1
50 * 13 - Honeycomb MR2
51 *
52 * LLVM 3.0
53 * 14 - Ice Cream Sandwich
54 * 15 - Ice Cream Sandwich MR1
55 *
56 * LLVM 3.1
57 * 16 - Ice Cream Sandwich MR2
Stephen Hines932bc6e2011-07-27 16:26:26 -070058 */
Chris Wailes881cda42014-06-23 11:27:41 -070059static const unsigned int kMinimumAPIVersion = 11;
60static const unsigned int kMaximumAPIVersion = RS_VERSION;
61static const unsigned int kCurrentAPIVersion = 10000;
62static const unsigned int kDevelopmentAPIVersion = UINT_MAX;
Stephen Hines932bc6e2011-07-27 16:26:26 -070063
64/**
65 * The minimum version which does not require translation (i.e. is already
66 * compatible with LLVM's default bitcode reader).
67 */
Logan Chienc7d67a72011-12-16 17:06:49 +080068static const unsigned int kMinimumUntranslatedVersion = 16;
69static const unsigned int kMinimumCompatibleVersion_LLVM_3_0 = 14;
70static const unsigned int kMinimumCompatibleVersion_LLVM_2_7 = 11;
Stephen Hines932bc6e2011-07-27 16:26:26 -070071
72
David Grossbcb03e52017-05-11 13:57:07 -070073static void stripUnknownAttributes(llvm::Module *M) {
74 for (llvm::Function &F : *M)
75 slang::stripUnknownAttributes(F);
76}
77
Stephen Hines932bc6e2011-07-27 16:26:26 -070078BitcodeTranslator::BitcodeTranslator(const char *bitcode, size_t bitcodeSize,
79 unsigned int version)
Chris Wailes900c6c12014-08-13 15:40:00 -070080 : mBitcode(bitcode), mBitcodeSize(bitcodeSize), mTranslatedBitcode(nullptr),
Stephen Hines932bc6e2011-07-27 16:26:26 -070081 mTranslatedBitcodeSize(0), mVersion(version) {
82 return;
83}
84
85
86BitcodeTranslator::~BitcodeTranslator() {
87 if (mVersion < kMinimumUntranslatedVersion) {
88 // We didn't actually do a translation in the alternate case, so deleting
89 // the bitcode would be improper.
90 delete [] mTranslatedBitcode;
91 }
Chris Wailes900c6c12014-08-13 15:40:00 -070092 mTranslatedBitcode = nullptr;
Stephen Hines932bc6e2011-07-27 16:26:26 -070093 return;
94}
95
96
97bool BitcodeTranslator::translate() {
98 if (!mBitcode || !mBitcodeSize) {
Steve Block10c14122012-01-08 10:15:06 +000099 ALOGE("Invalid/empty bitcode");
Stephen Hines932bc6e2011-07-27 16:26:26 -0700100 return false;
101 }
102
Stephen Hines7cd4c492012-03-13 19:57:37 -0700103 BitcodeWrapper BCWrapper(mBitcode, mBitcodeSize);
104 if (BCWrapper.getTargetAPI() != mVersion) {
105 ALOGE("Bitcode wrapper (%u) and translator (%u) disagree about target API",
106 BCWrapper.getTargetAPI(), mVersion);
107 }
108
Chris Wailes881cda42014-06-23 11:27:41 -0700109 if ((mVersion != kDevelopmentAPIVersion) &&
110 (mVersion != kCurrentAPIVersion) &&
111 ((mVersion < kMinimumAPIVersion) ||
112 (mVersion > kMaximumAPIVersion))) {
Steve Block10c14122012-01-08 10:15:06 +0000113 ALOGE("Invalid API version: %u is out of range ('%u' - '%u')", mVersion,
Stephen Hines932bc6e2011-07-27 16:26:26 -0700114 kMinimumAPIVersion, kMaximumAPIVersion);
115 return false;
116 }
117
118 // We currently don't need to transcode any API version higher than 14 or
119 // the current API version (i.e. 10000)
120 if (mVersion >= kMinimumUntranslatedVersion) {
121 mTranslatedBitcode = mBitcode;
122 mTranslatedBitcodeSize = mBitcodeSize;
123 return true;
124 }
125
126 // Do the actual transcoding by invoking a 2.7-era bitcode reader that can
127 // then write the bitcode back out in a more modern (acceptable) version.
Stephen Hinesd0993af2014-07-15 16:49:25 -0700128 std::unique_ptr<llvm::LLVMContext> mContext(new llvm::LLVMContext());
129 std::unique_ptr<llvm::MemoryBuffer> MEM(
Stephen Hines932bc6e2011-07-27 16:26:26 -0700130 llvm::MemoryBuffer::getMemBuffer(
Stephen Hinese708ffe2012-05-03 15:18:49 -0700131 llvm::StringRef(mBitcode, mBitcodeSize), "", false));
Stephen Hines932bc6e2011-07-27 16:26:26 -0700132 std::string error;
Stephen Hines57936132014-11-25 17:54:59 -0800133 llvm::ErrorOr<llvm::MemoryBufferRef> MBOrErr = MEM->getMemBufferRef();
Stephen Hines932bc6e2011-07-27 16:26:26 -0700134
Stephen Hines57936132014-11-25 17:54:59 -0800135 llvm::ErrorOr<llvm::Module *> MOrErr(nullptr);
Logan Chienc7d67a72011-12-16 17:06:49 +0800136
137 if (mVersion >= kMinimumCompatibleVersion_LLVM_3_0) {
Stephen Hines57936132014-11-25 17:54:59 -0800138 MOrErr = llvm_3_0::parseBitcodeFile(*MBOrErr, *mContext);
Logan Chienc7d67a72011-12-16 17:06:49 +0800139 } else if (mVersion >= kMinimumCompatibleVersion_LLVM_2_7) {
Stephen Hines57936132014-11-25 17:54:59 -0800140 MOrErr = llvm_2_7::parseBitcodeFile(*MBOrErr, *mContext);
Logan Chienc7d67a72011-12-16 17:06:49 +0800141 } else {
Steve Block10c14122012-01-08 10:15:06 +0000142 ALOGE("No compatible bitcode reader for API version %d", mVersion);
Logan Chienc7d67a72011-12-16 17:06:49 +0800143 return false;
144 }
145
Stephen Hines57936132014-11-25 17:54:59 -0800146 if (std::error_code EC = MOrErr.getError()) {
Steve Block10c14122012-01-08 10:15:06 +0000147 ALOGE("Could not parse bitcode file");
Stephen Hines57936132014-11-25 17:54:59 -0800148 ALOGE("%s", EC.message().c_str());
Stephen Hines932bc6e2011-07-27 16:26:26 -0700149 return false;
150 }
151
Stephen Hines57936132014-11-25 17:54:59 -0800152 // Module ownership is handled by the context, so we don't need to free it.
153 llvm::Module *module = MOrErr.get();
154
David Grossbcb03e52017-05-11 13:57:07 -0700155 stripUnknownAttributes(module);
156
Shih-wei Liaoc73b5212012-03-05 09:51:44 -0800157 std::string Buffer;
158
159 llvm::raw_string_ostream OS(Buffer);
Stephen Hines8dbca8e2013-06-21 16:30:26 -0700160 // Use the LLVM 3.2 bitcode writer, instead of the top-of-tree version.
161 llvm_3_2::WriteBitcodeToFile(module, OS);
Shih-wei Liaoc73b5212012-03-05 09:51:44 -0800162 OS.flush();
Stephen Hines932bc6e2011-07-27 16:26:26 -0700163
Stephen Hines7cd4c492012-03-13 19:57:37 -0700164 AndroidBitcodeWrapper wrapper;
165 size_t actualWrapperLen = writeAndroidBitcodeWrapper(
Stephen Hinesdc31b1c2014-12-17 19:23:28 -0800166 &wrapper, Buffer.size(), kMinimumUntranslatedVersion,
Stephen Hines7cd4c492012-03-13 19:57:37 -0700167 BCWrapper.getCompilerVersion(), BCWrapper.getOptimizationLevel());
168 if (!actualWrapperLen) {
169 ALOGE("Couldn't produce bitcode wrapper!");
170 return false;
171 }
172
173 mTranslatedBitcodeSize = actualWrapperLen + Buffer.size();
174 char *c = new char[mTranslatedBitcodeSize];
175 memcpy(c, &wrapper, actualWrapperLen);
Stephen Hinese9c850f2012-03-21 15:24:25 -0700176 memcpy(c + actualWrapperLen, Buffer.c_str(), Buffer.size());
Stephen Hines932bc6e2011-07-27 16:26:26 -0700177
178 mTranslatedBitcode = c;
Stephen Hines932bc6e2011-07-27 16:26:26 -0700179
180 return true;
181}
182
183} // namespace bcinfo