mirror of
https://github.com/intel/llvm.git
synced 2026-01-28 01:04:49 +08:00
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
77 lines
2.5 KiB
C++
77 lines
2.5 KiB
C++
//===- AVR.cpp ------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// AVR is a Harvard-architecture 8-bit micrcontroller designed for small
|
|
// baremetal programs. All AVR-family processors have 32 8-bit registers.
|
|
// The tiniest AVR has 32 byte RAM and 1 KiB program memory, and the largest
|
|
// one supports up to 2^24 data address space and 2^22 code address space.
|
|
//
|
|
// Since it is a baremetal programming, there's usually no loader to load
|
|
// ELF files on AVRs. You are expected to link your program against address
|
|
// 0 and pull out a .text section from the result using objcopy, so that you
|
|
// can write the linked code to on-chip flush memory. You can do that with
|
|
// the following commands:
|
|
//
|
|
// ld.lld -Ttext=0 -o foo foo.o
|
|
// objcopy -O binary --only-section=.text foo output.bin
|
|
//
|
|
// Note that the current AVR support is very preliminary so you can't
|
|
// link any useful program yet, though.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "InputFiles.h"
|
|
#include "Symbols.h"
|
|
#include "Target.h"
|
|
#include "lld/Common/ErrorHandler.h"
|
|
#include "llvm/Object/ELF.h"
|
|
#include "llvm/Support/Endian.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::object;
|
|
using namespace llvm::support::endian;
|
|
using namespace llvm::ELF;
|
|
using namespace lld;
|
|
using namespace lld::elf;
|
|
|
|
namespace {
|
|
class AVR final : public TargetInfo {
|
|
public:
|
|
AVR();
|
|
RelExpr getRelExpr(RelType Type, const Symbol &S,
|
|
const uint8_t *Loc) const override;
|
|
void relocateOne(uint8_t *Loc, RelType Type, uint64_t Val) const override;
|
|
};
|
|
} // namespace
|
|
|
|
AVR::AVR() { NoneRel = R_AVR_NONE; }
|
|
|
|
RelExpr AVR::getRelExpr(RelType Type, const Symbol &S,
|
|
const uint8_t *Loc) const {
|
|
return R_ABS;
|
|
}
|
|
|
|
void AVR::relocateOne(uint8_t *Loc, RelType Type, uint64_t Val) const {
|
|
switch (Type) {
|
|
case R_AVR_CALL: {
|
|
uint16_t Hi = Val >> 17;
|
|
uint16_t Lo = Val >> 1;
|
|
write16le(Loc, read16le(Loc) | ((Hi >> 1) << 4) | (Hi & 1));
|
|
write16le(Loc + 2, Lo);
|
|
break;
|
|
}
|
|
default:
|
|
error(getErrorLocation(Loc) + "unrecognized reloc " + toString(Type));
|
|
}
|
|
}
|
|
|
|
TargetInfo *elf::getAVRTargetInfo() {
|
|
static AVR Target;
|
|
return &Target;
|
|
}
|