llvm-6502/include/llvm
Daniel Dunbar aa81380353 ADT: Add ilist_node::get{Prev,Next}Node, which return the adjacent node or null.
- This provides a convenient alternative to using something llvm::prior or
   manual iterator access, for example::

    if (T *Prev = foo->getPrevNode())
      ...

   instead of::

     iterator it(foo);
     if (it != begin()) {
       --it;
       ... 
     }

 - Chris, please review.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103647 91177308-0d34-0410-b5e6-96231b3b80d8
2010-05-12 21:35:19 +00:00
..
ADT ADT: Add ilist_node::get{Prev,Next}Node, which return the adjacent node or null. 2010-05-12 21:35:19 +00:00
Analysis Remove DIGlobal. 2010-05-07 23:19:07 +00:00
Assembly Ok, third time's the charm. No changes from last time except the CMake 2010-04-02 23:17:14 +00:00
Bitcode Don't write into MemoryBuffers. 2010-04-19 16:15:31 +00:00
CodeGen Add initial kill flag support to FastISel. 2010-05-11 23:54:07 +00:00
CompilerDriver
Config Add new configure option, --disable-timestamps, intended to turn off anything which would mess up binary/object comparisons. Currently: 2010-05-10 20:11:56 +00:00
ExecutionEngine
MC MC: Simplify LayoutSection to just take the index of the section to layout. 2010-05-12 17:56:47 +00:00
Support I got tired of VISIBILITY_HIDDEN colliding with the gcc enum. Rename it 2010-05-11 20:16:09 +00:00
System Add llvm::sys::RunInterruptHandlers(), which runs the registered SIGINT cleanup 2010-05-08 02:10:34 +00:00
Target MC/Mach-O/x86_64: Add a new hook for checking whether a particular section can 2010-05-12 00:38:17 +00:00
Transforms Add an LLVM IR version of code sinking. This uses the same simple algorithm 2010-05-07 15:40:13 +00:00
AbstractTypeUser.h
Argument.h
Attributes.h
AutoUpgrade.h
BasicBlock.h Skip debug info when looking for existing EH calls at the 2010-04-02 21:49:27 +00:00
CallGraphSCCPass.h move ReplaceNode out of line, rename scc_iterator::fini -> isAtEnd(). 2010-04-16 22:59:24 +00:00
CallingConv.h
CMakeLists.txt
Constant.h
Constants.h Delete an obsolete comment. 2010-05-10 19:47:21 +00:00
DerivedTypes.h
Function.h
GlobalAlias.h
GlobalValue.h
GlobalVariable.h
GVMaterializer.h
InlineAsm.h Three changes: 2010-04-07 05:20:54 +00:00
InstrTypes.h
Instruction.def
Instruction.h rename NewDebugLoc -> DebugLoc, prune #includes in DebugLoc.h. 2010-04-02 20:21:22 +00:00
Instructions.h Revert 101465, it broke internal OpenGL testing. 2010-04-16 23:37:20 +00:00
IntrinsicInst.h Revert 101465, it broke internal OpenGL testing. 2010-04-16 23:37:20 +00:00
Intrinsics.h
Intrinsics.td Reapply address space patch after fixing an issue in MemCopyOptimizer. 2010-04-04 03:10:48 +00:00
IntrinsicsAlpha.td
IntrinsicsARM.td
IntrinsicsCellSPU.td
IntrinsicsPowerPC.td
IntrinsicsX86.td Remove the palignr intrinsics now that we lower them to vector shuffles, 2010-04-20 00:59:54 +00:00
IntrinsicsXCore.td
LinkAllPasses.h Add a simple module-level debug info printer. It just sets up a 2010-05-07 16:22:32 +00:00
LinkAllVMCore.h
Linker.h
LLVMContext.h introduce a new recoverable error handling API to LLVMContext 2010-04-07 23:40:44 +00:00
Metadata.h Fix comment typo. 2010-04-29 12:32:45 +00:00
Module.h
OperandTraits.h
Operator.h
Pass.h Ok, third time's the charm. No changes from last time except the CMake 2010-04-02 23:17:14 +00:00
PassAnalysisSupport.h
PassManager.h Fix PR6875: 2010-05-10 20:24:27 +00:00
PassManagers.h reapply my timer rewrite with a change for PassManager to store 2010-03-30 04:03:22 +00:00
PassSupport.h
SymbolTableListTraits.h
Type.h VMCore: Add Type::getIntN[Ptr]Ty, which are the obvious generic forms of 2010-04-13 01:39:07 +00:00
TypeSymbolTable.h
Use.h
User.h
Value.h Switch isa_impl from a function template to a class template with a 2010-03-30 18:05:52 +00:00
ValueSymbolTable.h