Category:Pages with syntax highlighting errors
From NaplesPU Documentation
When adding a new target architecture to llvm, some changes are required to the tools located in the llvm/tools folder.
Contents
llvm-objdump
This is the llvm object file dumper. The full documentation for llvm-objdump is maintained as a Texinfo manual. If the info and llvm-objdump programs are properly installed, the command
info llvm-objdump <\code> should give you access to the complete manual.
In order to be properly used with the NuPlus architecture the following change is required.
template <class ELFT>
static std::error_code getRelocationValueString(const ELFObjectFile<ELFT> *Obj,
const RelocationRef &RelRef,
SmallVectorImpl<char> &Result) {
...
switch (EF.getHeader()->e_machine) {
...
case ELF::EM_NUPLUS:
res = Target;
break;
ELFDumper
linker
elf2hex
lldb
TBD
Pages in category "Pages with syntax highlighting errors"
The following 22 pages are in this category, out of 22 total.
N
- NaplesPU Clang Documentation
- NaplesPU LLD Linker
- NaplesPU LLVM Documentation
- NaplesPU Tools
- NaplesPU.td
- NaplesPUCallingConv.td
- NaplesPUFrameLowering.cpp
- NaplesPUInstPrinter.cpp
- NaplesPUInstrFormats.td
- NaplesPUInstrInfo.td
- NaplesPUISelDAGToDAG.cpp
- NaplesPUISelLowering.cpp
- NaplesPUMCCodeEmitter.cpp
- NaplesPUMCInstLower.cpp
- NaplesPURegisterInfo.td
- NuPlusTargetLowering class