C++程序  |  184行  |  6.56 KB

/*
 * 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/Config/Config.h"
#include "bcc/Support/TargetLinkerConfigs.h"

#include <mcld/TargetOptions.h>
#include <mcld/MC/InputFactory.h>
#include <mcld/Fragment/Relocation.h>

using namespace bcc;

#ifdef TARGET_BUILD
static const char* gDefaultDyld = "/system/bin/linker";
static const char* gDefaultSysroot = "/system";
#else
static const char* gDefaultDyld = "/usr/lib/ld.so.1";
static const char* gDefaultSysroot = "/";
#endif

//===----------------------------------------------------------------------===//
// ARM
//===----------------------------------------------------------------------===//
#if defined(PROVIDE_ARM_CODEGEN)
ARMLinkerConfig::ARMLinkerConfig() : LinkerConfig(DEFAULT_ARM_TRIPLE_STRING) {

  // set up target-dependent options
  getLDConfig()->targets().setEndian(mcld::TargetOptions::Little);
  getLDConfig()->targets().setBitClass(32);

  // set up target-dependent constraints of attributes
  getLDConfig()->attribute().constraint().enableWholeArchive();
  getLDConfig()->attribute().constraint().disableAsNeeded();
  getLDConfig()->attribute().constraint().setSharedSystem();

  // set up the predefined attributes
  getLDConfig()->attribute().predefined().unsetWholeArchive();
  getLDConfig()->attribute().predefined().setDynamic();

  // set up target dependent options
  if (getLDConfig()->options().sysroot().empty()) {
    getLDConfig()->options().setSysroot(gDefaultSysroot);
  }

  if (!getLDConfig()->options().hasDyld()) {
    getLDConfig()->options().setDyld(gDefaultDyld);
  }

  // set up section map
  if (getLDConfig()->codeGenType() != mcld::LinkerConfig::Object) {
    bool exist = false;
    getLDConfig()->scripts().sectionMap().append(".ARM.exidx", ".ARM.exidx", exist);
    getLDConfig()->scripts().sectionMap().append(".ARM.extab", ".ARM.extab", exist);
    getLDConfig()->scripts().sectionMap().append(".ARM.attributes", ".ARM.attributes", exist);
  }

  // set up relocation factory
  mcld::Relocation::SetUp(*getLDConfig());
}
#endif // defined(PROVIDE_ARM_CODEGEN)

//===----------------------------------------------------------------------===//
// Mips
//===----------------------------------------------------------------------===//
#if defined(PROVIDE_MIPS_CODEGEN)
MipsLinkerConfig::MipsLinkerConfig()
  : LinkerConfig(DEFAULT_MIPS_TRIPLE_STRING) {

  // set up target-dependent options
  getLDConfig()->targets().setEndian(mcld::TargetOptions::Little);
  getLDConfig()->targets().setBitClass(32);

  // set up target-dependent constraints of attibutes
  getLDConfig()->attribute().constraint().enableWholeArchive();
  getLDConfig()->attribute().constraint().disableAsNeeded();
  getLDConfig()->attribute().constraint().setSharedSystem();

  // set up the predefined attributes
  getLDConfig()->attribute().predefined().unsetWholeArchive();
  getLDConfig()->attribute().predefined().setDynamic();

  // set up target dependent options
  if (getLDConfig()->options().sysroot().empty()) {
    getLDConfig()->options().setSysroot(gDefaultSysroot);
  }

  if (!getLDConfig()->options().hasDyld()) {
    getLDConfig()->options().setDyld(gDefaultDyld);
  }

  // set up relocation factory
  mcld::Relocation::SetUp(*getLDConfig());
}
#endif // defined(PROVIDE_MIPS_CODEGEN)

//===----------------------------------------------------------------------===//
// X86 and X86_64
//===----------------------------------------------------------------------===//
#if defined(PROVIDE_X86_CODEGEN)
X86FamilyLinkerConfigBase::X86FamilyLinkerConfigBase(const std::string& pTriple)
  : LinkerConfig(pTriple) {
  // set up target-dependent options
  getLDConfig()->targets().setEndian(mcld::TargetOptions::Little);
  getLDConfig()->targets().setBitClass(32);

  // set up target-dependent constraints of attibutes
  getLDConfig()->attribute().constraint().enableWholeArchive();
  getLDConfig()->attribute().constraint().disableAsNeeded();
  getLDConfig()->attribute().constraint().setSharedSystem();

  // set up the predefined attributes
  getLDConfig()->attribute().predefined().unsetWholeArchive();
  getLDConfig()->attribute().predefined().setDynamic();

  // set up target dependent options
  if (getLDConfig()->options().sysroot().empty()) {
    getLDConfig()->options().setSysroot(gDefaultSysroot);
  }

  if (!getLDConfig()->options().hasDyld()) {
    getLDConfig()->options().setDyld(gDefaultDyld);
  }

  // set up relocation factory
  mcld::Relocation::SetUp(*getLDConfig());
}

X86_32LinkerConfig::X86_32LinkerConfig()
  : X86FamilyLinkerConfigBase(DEFAULT_X86_TRIPLE_STRING) {
}

X86_64LinkerConfig::X86_64LinkerConfig()
  : X86FamilyLinkerConfigBase(DEFAULT_X86_64_TRIPLE_STRING) {
}
#endif // defined(PROVIDE_X86_CODEGEN)

#if !defined(TARGET_BUILD)
//===----------------------------------------------------------------------===//
// General
//===----------------------------------------------------------------------===//
GeneralLinkerConfig::GeneralLinkerConfig(const std::string& pTriple)
  : LinkerConfig(pTriple) {

  // set up target-dependent options
  getLDConfig()->targets().setEndian(mcld::TargetOptions::Little);
  getLDConfig()->targets().setBitClass(32);

  // set up target-dependent constraints of attributes
  getLDConfig()->attribute().constraint().enableWholeArchive();
  getLDConfig()->attribute().constraint().disableAsNeeded();
  getLDConfig()->attribute().constraint().setSharedSystem();

  // set up the predefined attributes
  getLDConfig()->attribute().predefined().unsetWholeArchive();
  getLDConfig()->attribute().predefined().setDynamic();

  // set up section map
  if (llvm::Triple::arm == getLDConfig()->targets().triple().getArch() &&
      getLDConfig()->codeGenType() != mcld::LinkerConfig::Object) {
    bool exist = false;
    getLDConfig()->scripts().sectionMap().append(".ARM.exidx", ".ARM.exidx", exist);
    getLDConfig()->scripts().sectionMap().append(".ARM.extab", ".ARM.extab", exist);
    getLDConfig()->scripts().sectionMap().append(".ARM.attributes", ".ARM.attributes", exist);
  }

  // set up relocation factory
  mcld::Relocation::SetUp(*getLDConfig());
}
#endif // defined(TARGET_BUILD)