/* * Copyright 2012, The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "bcc/Support/CompilerConfig.h" #include "bcc/Config/Config.h" #include "bcc/Support/Properties.h" #include <llvm/CodeGen/SchedulerRegistry.h> #include <llvm/MC/SubtargetFeature.h> #include <llvm/Support/Host.h> #include <llvm/Support/TargetRegistry.h> #include "bcc/Support/Log.h" using namespace bcc; CompilerConfig::CompilerConfig(const std::string &pTriple) : mTriple(pTriple), mFullPrecision(true), mTarget(NULL) { //===--------------------------------------------------------------------===// // Default setting of register sheduler //===--------------------------------------------------------------------===// llvm::RegisterScheduler::setDefault(llvm::createDefaultScheduler); //===--------------------------------------------------------------------===// // Default setting of target options //===--------------------------------------------------------------------===// // Use hardfloat ABI by default. // // TODO(all): Need to detect the CPU capability and decide whether to use // softfp. To use softfp, change the following 2 lines to // // options.FloatABIType = llvm::FloatABI::Soft; // options.UseSoftFloat = true; mTargetOpts.FloatABIType = llvm::FloatABI::Soft; mTargetOpts.UseSoftFloat = false; // Enable frame pointer elimination optimization by default. mTargetOpts.NoFramePointerElim = false; //===--------------------------------------------------------------------===// // Default setting for code model //===--------------------------------------------------------------------===// mCodeModel = llvm::CodeModel::Small; //===--------------------------------------------------------------------===// // Default setting for relocation model //===--------------------------------------------------------------------===// mRelocModel = llvm::Reloc::Default; //===--------------------------------------------------------------------===// // Default setting for optimization level (-O2) //===--------------------------------------------------------------------===// mOptLevel = llvm::CodeGenOpt::Default; //===--------------------------------------------------------------------===// // Default setting for architecture type //===--------------------------------------------------------------------===// mArchType = llvm::Triple::UnknownArch; initializeTarget(); initializeArch(); return; } bool CompilerConfig::initializeTarget() { std::string error; mTarget = llvm::TargetRegistry::lookupTarget(mTriple, error); if (mTarget != NULL) { return true; } else { ALOGE("Cannot initialize llvm::Target for given triple '%s'! (%s)", mTriple.c_str(), error.c_str()); return false; } } bool CompilerConfig::initializeArch() { if (mTarget != NULL) { mArchType = llvm::Triple::getArchTypeForLLVMName(mTarget->getName()); } else { mArchType = llvm::Triple::UnknownArch; return false; } // Configure each architecture for any necessary additional flags. switch (mArchType) { #if defined(PROVIDE_ARM_CODEGEN) case llvm::Triple::arm: { llvm::StringMap<bool> features; llvm::sys::getHostCPUFeatures(features); std::vector<std::string> attributes; #if defined(__HOST__) || defined(ARCH_ARM_HAVE_VFP) attributes.push_back("+vfp3"); #if !defined(__HOST__) && !defined(ARCH_ARM_HAVE_VFP_D32) attributes.push_back("+d16"); #endif // !__HOST__ && !ARCH_ARM_HAVE_VFP_D32 #endif // __HOST__ || ARCH_ARM_HAVE_VFP #if defined(__HOST__) || defined(ARCH_ARM_HAVE_NEON) // Only enable NEON on ARM if we have relaxed precision floats. if (!mFullPrecision) { attributes.push_back("+neon"); } else { #endif // __HOST__ || ARCH_ARM_HAVE_NEON attributes.push_back("-neon"); attributes.push_back("-neonfp"); #if defined(__HOST__) || defined(ARCH_ARM_HAVE_NEON) } #endif // __HOST__ || ARCH_ARM_HAVE_NEON if (!getProperty("debug.rs.arm-no-hwdiv")) { if (features.count("hwdiv-arm") && features["hwdiv-arm"]) attributes.push_back("+hwdiv-arm"); if (features.count("hwdiv") && features["hwdiv"]) attributes.push_back("+hwdiv"); } setFeatureString(attributes); #if defined(TARGET_BUILD) if (!getProperty("debug.rs.arm-no-tune-for-cpu")) { #ifndef FORCE_CPU_VARIANT_32 setCPU(llvm::sys::getHostCPUName()); #else #define XSTR(S) #S #define STR(S) XSTR(S) setCPU(STR(FORCE_CPU_VARIANT_32)); #undef STR #undef XSTR #endif } #endif // TARGET_BUILD break; } #endif // PROVIDE_ARM_CODEGEN #if defined(PROVIDE_ARM64_CODEGEN) case llvm::Triple::aarch64: #if defined(TARGET_BUILD) if (!getProperty("debug.rs.arm-no-tune-for-cpu")) { #ifndef FORCE_CPU_VARIANT_64 setCPU(llvm::sys::getHostCPUName()); #else #define XSTR(S) #S #define STR(S) XSTR(S) setCPU(STR(FORCE_CPU_VARIANT_64)); #undef STR #undef XSTR #endif } #endif // TARGET_BUILD break; #endif // PROVIDE_ARM64_CODEGEN #if defined (PROVIDE_MIPS_CODEGEN) case llvm::Triple::mips: case llvm::Triple::mipsel: case llvm::Triple::mips64: case llvm::Triple::mips64el: if (getRelocationModel() == llvm::Reloc::Default) { setRelocationModel(llvm::Reloc::Static); } break; #endif // PROVIDE_MIPS_CODEGEN #if defined (PROVIDE_X86_CODEGEN) case llvm::Triple::x86: // Disable frame pointer elimination optimization on x86 family. getTargetOptions().NoFramePointerElim = true; getTargetOptions().UseInitArray = true; break; #endif // PROVIDE_X86_CODEGEN #if defined (PROVIDE_X86_CODEGEN) case llvm::Triple::x86_64: setCodeModel(llvm::CodeModel::Medium); // Disable frame pointer elimination optimization on x86 family. getTargetOptions().NoFramePointerElim = true; getTargetOptions().UseInitArray = true; break; #endif // PROVIDE_X86_CODEGEN default: ALOGE("Unsupported architecture type: %s", mTarget->getName()); return false; } return true; } void CompilerConfig::setFeatureString(const std::vector<std::string> &pAttrs) { llvm::SubtargetFeatures f; for (std::vector<std::string>::const_iterator attr_iter = pAttrs.begin(), attr_end = pAttrs.end(); attr_iter != attr_end; attr_iter++) { f.AddFeature(*attr_iter); } mFeatureString = f.getString(); return; }