Skip to content
  1. Oct 01, 2008
    • Daniel Dunbar's avatar
      Add simple interface for protecting runtime functions from name · 23fd462f
      Daniel Dunbar authored
      collisions.
       - Provide CodeGenModule::CreateRuntimeFunction which guarantees that
         the function it creates will have the provided name in the final
         module. This allows the runtime to have its functions protected
         from declarations of the same name in the source code.
      
       - One could argue that this is a reason to abuse the llvm::Module
         namespace for dealing with function redeclarations. However, that
         approach seems conceptually flawed to me. This one also happens to
         be somewhat more efficient.
      
      No functionality change.
      
      llvm-svn: 56899
      23fd462f
    • Ted Kremenek's avatar
      Add a QualType to ConjuredSymbol to represent the type and size of the symbol. · d331d09e
      Ted Kremenek authored
      Use this updated interface when invalidating arguments passed by reference; the type of symbol is of the object passed by reference, not the reference itself.
      
      llvm-svn: 56894
      d331d09e
  2. Sep 30, 2008
  3. Sep 29, 2008
  4. Sep 28, 2008
  5. Sep 27, 2008
    • Daniel Dunbar's avatar
      Simplify generate code for exceptions: · 523208fb
      Daniel Dunbar authored
       - There is no need to branch on the rethrow variable to determine if
         we need to call objc_exception_try_exit. We know whether an
         exception was thrown, so just branch to a different target if we
         want to skip the try_exit. 
      
         This is a slight semantic departure from gcc, but only for throwing
         nil, which is undefined (and for which gcc emits broken code).
      
       - Also fixes a bug in current code which was calling try_exit too
         many times when an exception was uncaught (but there were some
         handlers).
      
      Fix bug introduced in prev. commit, the type of the @catch parameter
      was uninitialized.
      
      llvm-svn: 56754
      523208fb
Loading