llvm-6502/lib/Target/XCore
Bill Wendling 5e721d7682 Implement the "linker_private_weak" linkage type. This will be used for
Objective-C metadata types which should be marked as "weak", but which the
linker will remove upon final linkage. However, this linkage isn't specific to
Objective-C.

For example, the "objc_msgSend_fixup_alloc" symbol is defined like this:

      .globl l_objc_msgSend_fixup_alloc
      .weak_definition l_objc_msgSend_fixup_alloc
      .section __DATA, __objc_msgrefs, coalesced
      .align 3
l_objc_msgSend_fixup_alloc:
       .quad   _objc_msgSend_fixup
       .quad   L_OBJC_METH_VAR_NAME_1

This is different from the "linker_private" linkage type, because it can't have
the metadata defined with ".weak_definition".

Currently only supported on Darwin platforms.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107433 91177308-0d34-0410-b5e6-96231b3b80d8
2010-07-01 21:55:59 +00:00
..
AsmPrinter Implement the "linker_private_weak" linkage type. This will be used for 2010-07-01 21:55:59 +00:00
TargetInfo make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. 2010-01-24 20:43:08 +00:00
CMakeLists.txt Add skeleton target-specific SelectionDAGInfo files. 2010-04-16 23:04:22 +00:00
Makefile make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. 2010-01-24 20:43:08 +00:00
README.txt The backend now makes a reasonable job of targeting lmul / macc 2010-03-10 18:14:47 +00:00
XCore.h Add new helpers for registering targets. 2009-07-25 06:49:55 +00:00
XCore.td Replace TSFlagsFields and TSFlagsShifts with a simpler TSFlags field. 2010-04-05 03:10:20 +00:00
XCoreCallingConv.td
XCoreFrameInfo.cpp
XCoreFrameInfo.h
XCoreInstrFormats.td
XCoreInstrInfo.cpp Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). This 2010-06-17 22:43:56 +00:00
XCoreInstrInfo.h Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). This 2010-06-17 22:43:56 +00:00
XCoreInstrInfo.td Remove isTwoAddress from XCore. 2010-06-21 18:51:38 +00:00
XCoreISelDAGToDAG.cpp Use const qualifiers with TargetLowering. This eliminates several 2010-04-17 15:26:15 +00:00
XCoreISelLowering.cpp Remove initialized but otherwise unused variables. 2010-06-29 11:22:26 +00:00
XCoreISelLowering.h Get rid of the EdgeMapping map. Instead, just check for BasicBlock 2010-05-01 00:01:06 +00:00
XCoreMachineFunctionInfo.h Now that DBG_LABEL is updated, we can finally make MachineMove 2010-03-14 08:12:40 +00:00
XCoreMCAsmInfo.cpp eliminate the magic AbsoluteDebugSectionOffsets MAI hook, 2010-04-04 23:22:29 +00:00
XCoreMCAsmInfo.h Rename TargetAsmInfo (and its subclasses) to MCAsmInfo. 2009-08-22 20:48:53 +00:00
XCoreRegisterInfo.cpp cleanup 2010-06-02 13:53:17 +00:00
XCoreRegisterInfo.h cleanup 2010-06-02 13:53:17 +00:00
XCoreRegisterInfo.td
XCoreSelectionDAGInfo.cpp Implement a bunch more TargetSelectionDAGInfo infrastructure. 2010-05-11 17:31:57 +00:00
XCoreSelectionDAGInfo.h Implement a bunch more TargetSelectionDAGInfo infrastructure. 2010-05-11 17:31:57 +00:00
XCoreSubtarget.cpp Remove xs1b predicate since it is no longer needed to differentiate betweem 2009-10-06 16:17:57 +00:00
XCoreSubtarget.h Remove xs1b predicate since it is no longer needed to differentiate betweem 2009-10-06 16:17:57 +00:00
XCoreTargetMachine.cpp Implement a bunch more TargetSelectionDAGInfo infrastructure. 2010-05-11 17:31:57 +00:00
XCoreTargetMachine.h Implement a bunch more TargetSelectionDAGInfo infrastructure. 2010-05-11 17:31:57 +00:00
XCoreTargetObjectFile.cpp move elf section uniquing to MCContext. Along the way 2010-04-08 21:26:26 +00:00
XCoreTargetObjectFile.h Move TLOF implementations to libCodegen to resolve layering violation. 2010-02-15 22:37:53 +00:00

To-do
-----

* Instruction encodings
* Tailcalls
* Investigate loop alignment
* Add builtins