Skip to content
  1. Apr 22, 2007
  2. Apr 21, 2007
  3. Apr 17, 2007
  4. Apr 16, 2007
  5. Apr 12, 2007
  6. Apr 11, 2007
    • Reid Spencer's avatar
      For PR1146: · a472f66d
      Reid Spencer authored
      Put the parameter attributes in their own ParamAttr name space. Adjust the
      rest of llvm as a result.
      
      llvm-svn: 35877
      a472f66d
  7. Apr 09, 2007
  8. Mar 30, 2007
    • Reid Spencer's avatar
      For PR1289: · cf2ccbff
      Reid Spencer authored
      Check at the end of the parse that there are no unresolved types and no
      undefined values. Issue errors if there are. This gets rid of the need
      for implementation or checkpoint by ensuring you can't finish a parse with
      undefined things.
      
      llvm-svn: 35499
      cf2ccbff
  9. Mar 29, 2007
  10. Mar 28, 2007
  11. Mar 22, 2007
  12. Mar 20, 2007
  13. Mar 19, 2007
    • Reid Spencer's avatar
      Fix test/Assembler/2007-03-19-NegValue.ll by using the new "isSigned" · 363fd461
      Reid Spencer authored
      parameter on ConstantInt::get to indicate the signedness of the intended
      value.
      
      llvm-svn: 35182
      363fd461
    • Reid Spencer's avatar
      For PR1248: · fe65ae88
      Reid Spencer authored
      Eliminate support for type planes in numbered values. This simplifies the
      data structures involved in managing forward definitions, etc. Instead of
      requiring maps from type to value, we can now just use a vector of values.
      These changes also required rewrites of some support functions such as
      InsertValue, getBBVal, and ResolveDefinitions. Some other cosmetic changes
      were made as well.
      
      llvm-svn: 35173
      fe65ae88
  14. Mar 01, 2007
  15. Feb 28, 2007
  16. Feb 15, 2007
    • Reid Spencer's avatar
      For PR1195: · 09575bac
      Reid Spencer authored
      Change use of "packed" term to "vector" in comments, strings, variable
      names, etc.
      
      llvm-svn: 34300
      09575bac
    • Reid Spencer's avatar
      For PR1195: · d84d35ba
      Reid Spencer authored
      Rename PackedType -> VectorType, ConstantPacked -> ConstantVector, and
      PackedTyID -> VectorTyID. No functional changes.
      
      llvm-svn: 34293
      d84d35ba
  17. Feb 13, 2007
  18. Feb 11, 2007
  19. Feb 05, 2007
  20. Feb 02, 2007
    • Reid Spencer's avatar
      Changes to support making the shift instructions be true BinaryOperators. · 2341c22e
      Reid Spencer authored
      This feature is needed in order to support shifts of more than 255 bits
      on large integer types.  This changes the syntax for llvm assembly to
      make shl, ashr and lshr instructions look like a binary operator:
         shl i32 %X, 1
      instead of
         shl i32 %X, i8 1
      Additionally, this should help a few passes perform additional optimizations.
      
      llvm-svn: 33776
      2341c22e
  21. Jan 31, 2007
  22. Jan 30, 2007
  23. Jan 28, 2007
    • Anton Korobeynikov's avatar
      Propagate changes from my local tree. This patch includes: · 037c867b
      Anton Korobeynikov authored
      1. New parameter attribute called 'inreg'. It has meaning "place this
      parameter in registers, if possible". This is some generalization of
      gcc's regparm(n) attribute. It's currently used only in X86-32 backend.
      2. Completely rewritten CC handling/lowering code inside X86 backend.
      Merged stdcall + c CCs and fastcall + fast CC.
      3. Dropped CSRET CC. We cannot add struct return variant for each
      target-specific CC (e.g. stdcall + csretcc and so on).
      4. Instead of CSRET CC introduced 'sret' parameter attribute. Setting in
      on first attribute has meaning 'This is hidden pointer to structure
      return. Handle it gently'.
      5. Fixed small bug in llvm-extract + add new feature to
      FunctionExtraction pass, which relinks all internal-linkaged callees
      from deleted function to external linkage. This will allow further
      linking everything together.
      
      NOTEs: 1. Documentation will be updated soon.
             2. llvm-upgrade should be improved to translate csret => sret.
                Before this, there will be some unexpected test fails.
      llvm-svn: 33597
      037c867b
  24. Jan 26, 2007
    • Reid Spencer's avatar
      For PR645: · 791b8ef1
      Reid Spencer authored
      Implement separation of local and global symbols. Local symbols and types
      now use % prefix. Global variables and functions now use @ prefix.
      
      For PR761:
      Replace:
        target endian =
        target pointersize =
      With:
        target datalayout =
      
      llvm-svn: 33524
      791b8ef1
  25. Jan 21, 2007
    • Jeff Cohen's avatar
      Fix this error: · 5d956e42
      Jeff Cohen authored
      llvm[2]: Compiling llvmAsmParser.cpp for Debug build
      /usr/home/jeffc/llvm/lib/AsmParser/llvmAsmParser.y: In function 'int llvmAsmparse()':
      /usr/home/jeffc/llvm/lib/AsmParser/llvmAsmParser.y:1846: error: expected `;' before '}' token
      
      llvm-svn: 33425
      5d956e42
  26. Jan 17, 2007
    • Reid Spencer's avatar
      For PR1117: · 082a77f1
      Reid Spencer authored
      Make the assembler generate a nice error message if a bad cast instruction
      is attempted instead of asserting out. This is made possible by the
      recently exposed method CastInst::castIsValid() which checks the validity
      of any cast instruction.
      
      llvm-svn: 33283
      082a77f1
  27. Jan 15, 2007
  28. Jan 13, 2007
Loading