Skip to content
  1. May 06, 2007
  2. Apr 30, 2007
  3. Apr 29, 2007
  4. Apr 12, 2007
  5. 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
  6. Apr 04, 2007
    • Reid Spencer's avatar
      For PR1302: · d1b53f53
      Reid Spencer authored
      Use local variable names that match the function parameter name that it
      is passed to so the code is more clear, to wit: is_bytecode -> is_native
      
      llvm-svn: 35656
      d1b53f53
    • Reid Spencer's avatar
      For PR1302: · a2c41552
      Reid Spencer authored
      Implement file tests for both LinkInLibrary and LinkInFile to determine if
      the file is native. Don't generate warnings if the file is native.
      
      llvm-svn: 35653
      a2c41552
  7. Feb 15, 2007
    • 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
  8. Feb 11, 2007
  9. Feb 07, 2007
    • Chris Lattner's avatar
      push bytecode decompressor out through APIs. Now the bytecode reader · a0e49f2e
      Chris Lattner authored
      api's look like this:
      
      ModuleProvider *getBytecodeModuleProvider(
        const std::string &Filename,  ///< Name of file to be read
        BCDecompressor_t *BCDC = Compressor::decompressToNewBuffer,
        std::string* ErrMsg = 0,      ///< Optional error message holder
        BytecodeHandler* H = 0        ///< Optional handler for reader events
      );
      
      This is ugly, but allows a client to say:
      
        getBytecodeModuleProvider("foo", 0);
      
      If they do this, there is no dependency on the compression libraries, saving
      codesize.
      
      llvm-svn: 34012
      a0e49f2e
  10. Feb 05, 2007
    • Reid Spencer's avatar
      For PR411: · 1241d6d5
      Reid Spencer authored
      Adjust to changes in Module interface:
      getMainFunction() -> getFunction("main")
      getNamedFunction(X) -> getFunction(X)
      
      llvm-svn: 33922
      1241d6d5
    • Reid Spencer's avatar
      For PR411: · 3aaaa0b2
      Reid Spencer authored
      This patch replaces the SymbolTable class with ValueSymbolTable which does
      not support types planes. This means that all symbol names in LLVM must now
      be unique. The patch addresses the necessary changes to deal with this and
      removes code no longer needed as a result. This completes the bulk of the
      changes for this PR. Some cleanup patches will follow.
      
      llvm-svn: 33918
      3aaaa0b2
  11. Feb 04, 2007
  12. Feb 01, 2007
  13. Jan 30, 2007
  14. Jan 29, 2007
  15. Jan 26, 2007
    • Reid Spencer's avatar
      For PR761: · 3ac38e99
      Reid Spencer authored
      The Module::setEndianness and Module::setPointerSize methods have been
      removed. Instead you can get/set the DataLayout. Adjust thise accordingly.
      
      llvm-svn: 33530
      3ac38e99
  16. Jan 12, 2007
    • Reid Spencer's avatar
      For PR1064: · 7a9c62ba
      Reid Spencer authored
      Implement the arbitrary bit-width integer feature. The feature allows
      integers of any bitwidth (up to 64) to be defined instead of just 1, 8,
      16, 32, and 64 bit integers.
      
      This change does several things:
      1. Introduces a new Derived Type, IntegerType, to represent the number of
         bits in an integer. The Type classes SubclassData field is used to
         store the number of bits. This allows 2^23 bits in an integer type.
      2. Removes the five integer Type::TypeID values for the 1, 8, 16, 32 and
         64-bit integers. These are replaced with just IntegerType which is not
         a primitive any more.
      3. Adjust the rest of LLVM to account for this change.
      
      Note that while this incremental change lays the foundation for arbitrary
      bit-width integers, LLVM has not yet been converted to actually deal with
      them in any significant way. Most optimization passes, for example, will
      still only deal with the byte-width integer types.  Future increments
      will rectify this situation.
      
      llvm-svn: 33113
      7a9c62ba
  17. Jan 06, 2007
    • Reid Spencer's avatar
      For PR411: · 32af9e8c
      Reid Spencer authored
      Take an incremental step towards type plane elimination. This change
      separates types from values in the symbol tables by finally making use
      of the TypeSymbolTable class. This yields more natural interfaces for
      dealing with types and unclutters the SymbolTable class.
      
      llvm-svn: 32956
      32af9e8c
  18. Dec 15, 2006
  19. Dec 12, 2006
  20. Dec 08, 2006
  21. Dec 07, 2006
  22. Dec 01, 2006
  23. Nov 27, 2006
  24. Nov 11, 2006
  25. Nov 09, 2006
  26. Nov 02, 2006
    • Reid Spencer's avatar
      For PR786: · de46e484
      Reid Spencer authored
      Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
      fall out by removing unused variables. Remaining warnings have to do with
      unused functions (I didn't want to delete code without review) and unused
      variables in generated code. Maintainers should clean up the remaining
      issues when they see them. All changes pass DejaGnu tests and Olden.
      
      llvm-svn: 31380
      de46e484
  27. Sep 14, 2006
  28. Jul 29, 2006
  29. Jul 15, 2006
  30. Jul 07, 2006
  31. Jun 16, 2006
  32. Jun 01, 2006
Loading