]> granicus.if.org Git - clang/history - CodeGen/CGExprScalar.cpp
implement codegen support for sizeof(void), fixing PR2080.
[clang] / CodeGen / CGExprScalar.cpp
2008-02-21 Chris Lattnerimplement codegen support for sizeof(void), fixing...
2008-02-16 Chris Lattnerimplement codegen support for aggregates casted to...
2008-02-02 Chris Lattnerminor tweak to anders patch: (only) ocu vectors support...
2008-02-01 Anders CarlssonOnly OCU vectors can be splatted.
2008-01-31 Chris LattnerFix PR1921 by promoting negative indices to intptrty.
2008-01-30 Nate BegemanImplement first round of feedback on __builtin_overload
2008-01-30 Eli FriedmanMake sure to emit all the arguments to a function call...
2008-01-29 Eli FriedmanFix a bug where CodeGen would attempt to erase an instr...
2008-01-29 Anders CarlssonImplement __builtin_offsetof.
2008-01-29 Anders CarlssonCorrectly handle scalars in braces.
2008-01-22 Fariborz JahanianProblem with ObjC's type-encoding of nested structs...
2008-01-17 Nate BegemanImplement basic overload support via a new builtin...
2008-01-07 Ted KremenekSubstituted all instances of the string "Objc" for...
2008-01-03 Chris Lattnerfix long lines.
2008-01-03 Chris LattnerFix a crash reported by Seo Sanghyeon.
2007-12-30 Nate BegemanAllow implicit casts during arithmetic for OCUVector...
2007-12-30 Nate BegemanAllow codegen of vector fdiv
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-26 Anders CarlssonNo need to do work that the folding builder does for us.
2007-12-26 Seo SanghyeonRemove broken assert from CodeGen. Better check is...
2007-12-18 Anders CarlssonTurns out the LLVMFoldingBuilder can fold InsertElement...
2007-12-15 Anders CarlssonWe now support all MMX intrinsics. SSE intrinsics are...
2007-12-12 Chris LattnerFix a codegen crash on test/CodeGen/cast.c, reported...
2007-12-11 Ted KremenekMega-patch: ripped SourceManager out of Diagnostic...
2007-12-10 Ted KremenekAdded missing inclusion of stdarg.h. Now CGExprScalar.cpp
2007-12-10 Anders CarlssonAdd EmitShuffleVector helper method.
2007-12-05 Anders CarlssonImplement CodeGen for vectors. Don't create unnecessary...
2007-12-03 Seo SanghyeonIgnore typedefs in pointer arithmetic codegen.
2007-12-02 Chris Lattnerconvert the rest of the stderr users in codegen to...
2007-11-30 Chris LattnerFix a codegen crash on void ?: reported by Oliver
2007-11-26 Chris LattnerFix sema support for the gnu ?: expression with a
2007-11-15 Nate BegemanImplement codegen of CXX Bool
2007-10-31 Anders CarlssonFix a typo that prevented pointer-to-int conversions...
2007-10-30 Devang PatelFix 80 col violations.
2007-10-30 Devang PatelRemove commented out line.
2007-10-29 Anders CarlssonAdd (partial) support for @encode.
2007-10-25 Devang PatelFix "strbuf += stufflen;" crash.
2007-10-25 Chris LattnerAdd a new ChooseExpr::isConditionTrue method to unify
2007-10-24 Devang PatelHandle non-constant initializers.
2007-10-24 Devang PatelVisit CompoundLiteralExpr and InitListExpr
2007-10-17 Hartmut KaiserUpdated VC++ build system.
2007-10-15 Steve NaroffMove type compatibility predicates from Type to ASTCont...
2007-10-15 Anders CarlssonAdd code generation and sema checking for __builtin_va_arg.
2007-10-13 Anders CarlssonFix an incorrect assertion.
2007-10-12 Anders CarlssonGenerate code for va_start and va_end.
2007-10-09 Devang PatelUse LLVMFoldingBuilder
2007-09-22 Chris Lattnerfurther apfloat'ize the front-end, allowing codegen...
2007-09-13 Chris Lattnerupdate to match llvm mainline api
2007-09-13 Chris Lattneradjust to a change in the LLVM APIs, this is still...
2007-09-13 Chris LattnerWhen dumping out errors about unsupported stuff, emit...
2007-09-07 Hartmut KaiserFixed compilation on Windows.
2007-09-04 Ted KremenekUpdated calls to CreateGEP to new interface in LLVM...
2007-09-04 Chris Lattnereliminate some VC++ warnings, patch contributed by...
2007-08-31 Chris LattnerGeneralize RValue to handle complex better, generalize...
2007-08-31 Chris Lattnerimplement code generation for scalar stmt expressions.
2007-08-26 Chris LattnerImplement compound assignment operators whose LHS is...
2007-08-26 Chris Lattnercompound assignment operators are of type CompoundAssig...
2007-08-26 Chris Lattnerfix a typo noticed by Gordon Henriksen
2007-08-26 Chris Lattnerllvmgcc is right :)
2007-08-26 Chris Lattnercompound assignmetns work for scalars.
2007-08-26 Chris Lattnerimplement conversions of complex to bool.
2007-08-26 Chris Lattnerreimplement ConvertScalarValueToBool in CGExprScalar.cpp
2007-08-26 Chris Lattnerrefactor some code to expose compex->scalar conversion...
2007-08-26 Chris Lattnerthere are no conversions from aggregates to scalars.
2007-08-26 Chris Lattnerimplement conversions from complex to scalar types.
2007-08-26 Chris LattnerOmit EmitConversion
2007-08-26 Chris Lattnerremove uses of EmitConversion
2007-08-26 Chris Lattnerrefactor scalar conversions out into CGExprScalar.cpp
2007-08-26 Chris Lattnerimplement codegen of __imag of a scalar. Our impl...
2007-08-26 Chris Lattnerfix codegen of pre/post inc/dec of a pointer.
2007-08-25 Chris LattnerThe new correct compound assignment operators exposed...
2007-08-24 Chris Lattnerimplement codegen for real/imag. TODO: imag of non...
2007-08-24 Chris LattnerTeach emit-llvm for scalars to properly handle compound...
2007-08-24 Chris Lattnerprint the computation type for compound assignment...
2007-08-24 Chris Lattnercompletely refactor codegen of scalar expressions out...