Skip to content
  1. Jul 15, 2004
    • Chris Lattner's avatar
      Improve codegen for the LLVM offsetof/sizeof "operator". Before we compiled · 33930ad7
      Chris Lattner authored
      this LLVM function:
      
      int %foo() {
              ret int cast (int** getelementptr (int** null, int 1) to int)
      }
      
      into:
      
      foo:
              mov %EAX, 0
              lea %EAX, DWORD PTR [%EAX + 4]
              ret
      
      now we compile it into:
      
      foo:
              mov %EAX, 4
              ret
      
      This sequence is frequently generated by the MSIL front-end, and soon the malloc lowering pass and
      Java front-ends as well..
      
      -Chris
      
      llvm-svn: 14834
      33930ad7
  2. Jul 14, 2004
  3. Jul 13, 2004
  4. Jul 11, 2004
  5. Jul 09, 2004
  6. Jul 08, 2004
  7. Jul 07, 2004
  8. Jul 06, 2004
  9. Jul 04, 2004
  10. Jul 02, 2004
Loading