- e9bfe6d Implement codegen of CXX Bool by Nate Begeman · 17 years ago
- 07f44dc Clean up types, removing some casts. Patch contributed by Cedric Venet. by Chris Lattner · 17 years ago
- 25e6d7b Add assert for the case that is not handled. struct { char a; short b:2; }; by Devang Patel · 17 years ago
- c64fa03 Keep track of beginning offset for the bit field that does not start at byte boundry. by Devang Patel · 17 years ago
- be12234 Stay within 80 columns. by Devang Patel · 17 years ago
- 0a52b81 Start struct bit field laout work. This is far from complete. by Devang Patel · 17 years ago
- edf4e23 Generate code for member exprs. by Anders Carlsson · 17 years ago
- 7a78e43 Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
- 9be009e Put constant CFStrings in the __DATA,__cfstring section. by Anders Carlsson · 17 years ago
- 783e143 Stub out codegen for __builtin_constant_p. Remove any implicit cast exprs in the call to __builtin___CFStringMakeConstantString. by Anders Carlsson · 17 years ago
- 9f5bf52 Remove unnecessary method. by Devang Patel · 17 years ago
- 9889c1a start adding pading fields. by Devang Patel · 17 years ago
- 44db38f Fix a typo that prevented pointer-to-int conversions from working. by Anders Carlsson · 17 years ago
- e3575e6 Refactor code into a separate method. by Devang Patel · 17 years ago
- 0ae1541 Handle function calls that return aggregate expressions. by Anders Carlsson · 17 years ago
- 125e584 Check whether next slot meets field type's alignment requirements. by Devang Patel · 17 years ago
- 5a61ca5 Keep track of field offsets during structure layout. Take 2. by Devang Patel · 17 years ago
- a8fccb8 Take 2. by Devang Patel · 17 years ago
- 32e20f9 Initialize MemCpyFn by Devang Patel · 17 years ago
- 07e8232 temporarily revert devang's patch to link in the llvm codegen etc. by Chris Lattner · 17 years ago
- 6e05ca9 Keep track of field offsets during structure layout. by Devang Patel · 17 years ago
- 2f1a2fc Make target info available to clang code generator. by Devang Patel · 17 years ago
- 2d9b34b Avoid unnecessary PATypeHolder copy. by Devang Patel · 17 years ago
- 5bf7202 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
- 08a10cc Refactor code into a separate method. by Devang Patel · 17 years ago
- 0f2a8fb Fix 80 col violations. by Devang Patel · 17 years ago
- 2c6e283 Use by Devang Patel · 17 years ago
- ce6c837 Remove commented out line. by Devang Patel · 17 years ago
- a1ace4a Add RecordOrganizer::layoutUnionFields() by Devang Patel · 17 years ago
- 83eab63 Insetead of assert() just emit an error message for by Devang Patel · 17 years ago
- 36f07d8 Add (partial) support for @encode. by Anders Carlsson · 17 years ago
- 4043840 Generate code for __builtin_classify_type. by Anders Carlsson · 17 years ago
- 9b1ca9e Codegen union member references. by Devang Patel · 17 years ago
- 2b24fd9 Handle non LValue base expressions. by Devang Patel · 17 years ago
- 2ecd901 by Devang Patel · 17 years ago
- ddde6d5 Codegen array initializers. by Devang Patel · 17 years ago
- 8b5f530 Codegen global array initializers. by Devang Patel · 17 years ago
- 0401180 Fix "strbuf += stufflen;" crash. by Devang Patel · 17 years ago
- f3e2d53 Document ConvertNewType() method and make it a private method. by Devang Patel · 17 years ago
- bd2c278 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago
- f624cd2 Add a new ChooseExpr::isConditionTrue method to unify some code. by Chris Lattner · 17 years ago
- 1bd623e Remove unused #includes by Devang Patel · 17 years ago
- 9dd3e2b Handle foo()->a = 42; by Devang Patel · 17 years ago
- ec0da44 Move RecordOrganizer into CodeGenTypes.cpp by Devang Patel · 17 years ago
- 32c3983 Handle non-constant initializers. by Devang Patel · 17 years ago
- 01ab130 Visit CompoundLiteralExpr and InitListExpr by Devang Patel · 17 years ago
- 29c1309 by Devang Patel · 17 years ago
- 93ca245 check base type. by Devang Patel · 17 years ago
- b3e16ba Add notes. by Devang Patel · 17 years ago
- 6478e4b Use isUnionType() predicate. by Devang Patel · 17 years ago
- 30f6f13 untabify by Devang Patel · 17 years ago
- 68c1010 Fixed a strange construct, please review. by Hartmut Kaiser · 17 years ago
- 317c716 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
- 41b6625 Handle simple struct member expr. by Devang Patel · 17 years ago
- aebd83f Begin struct layout work. by Devang Patel · 17 years ago
- ff08d2c Updated VC++ build system. by Hartmut Kaiser · 17 years ago
- 855d78d Generate code for static variables that don't have initializers. Also, report an error if a static initializer is not constant. by Anders Carlsson · 17 years ago
- 85f0dc5 by Steve Naroff · 17 years ago
- 3676033 Add code generation and sema checking for __builtin_va_arg. by Anders Carlsson · 17 years ago
- 8884245 Fix an incorrect assertion. by Anders Carlsson · 17 years ago
- cebb8d6 Generate code for va_start and va_end. by Anders Carlsson · 17 years ago
- 706f844 Recognize while(1) and avoid extra blocks. by Devang Patel · 17 years ago
- 716d02c Recognize "do {} while (0)" idiom and avoid extra basic blocks. by Devang Patel · 17 years ago
- 638b64c Use LLVMFoldingBuilder by Devang Patel · 17 years ago
- 74f3535 Use const& for RHS. by Devang Patel · 17 years ago
- bc37238 Fix comment. Describe what it is, instead of how it is used. by Devang Patel · 17 years ago
- c04aff1 Added a new class for Interfaces qualified by protocol list. by Fariborz Jahanian · 17 years ago
- 3289bca Rename FileVariable -> FileVar for consistency with its class name, by Chris Lattner · 17 years ago
- 347ca32 Code gen case statement ranges. by Devang Patel · 17 years ago
- 2fd1c65 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
- cf9dbf2 Support case statement ranges. by Devang Patel · 17 years ago
- e58e080 switch statement code gen. by Devang Patel · 17 years ago
- 9729936 Do not codegen dummy block. Dummy block is an empty block with no predecessors. by Devang Patel · 17 years ago
- 7f29876 further apfloat'ize the front-end, allowing codegen to pass by Chris Lattner · 17 years ago
- 1d2b461 fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
- 2591e1b by Steve Naroff · 17 years ago
- cb59747 by Steve Naroff · 17 years ago
- b2a7dab update to match llvm mainline api by Chris Lattner · 17 years ago
- b0e17eb adjust to a change in the LLVM APIs, this is still very hackish until by Chris Lattner · 17 years ago
- 1aef621 When dumping out errors about unsupported stuff, emit loc info. by Chris Lattner · 17 years ago
- 7c6f0c7 Fixed compilation on Windows. by Hartmut Kaiser · 17 years ago
- 7f6f4a4 Updated calls to CreateGEP to new interface in LLVM mainline. by Ted Kremenek · 17 years ago
- a96e0d8 eliminate some VC++ warnings, patch contributed by Hartmut Kaiser by Chris Lattner · 17 years ago
- bab0bfb add stmtexpr support for aggregates by Chris Lattner · 17 years ago
- 987b0f1 add support for complex stmtexpr's by Chris Lattner · 17 years ago
- e24c4cf Generalize RValue to handle complex better, generalize EmitCompoundStmt to by Chris Lattner · 17 years ago
- ea6cdd7 implement code generation for scalar stmt expressions. by Chris Lattner · 17 years ago
- 02c60f5 Implement codegen support for lowering "library builtins" like __builtin_isinf by Chris Lattner · 17 years ago
- ab862cc add the ability to get the llvm function corresponding to a library builtin. by Chris Lattner · 17 years ago
- 83c1301 by Steve Naroff · 17 years ago
- cdbc647 remove some ugly code now that implicit defs are being generated in this case, thanks Steve! by Chris Lattner · 17 years ago
- 90a018d Change EnumDecl to store its corresponding integer type by Chris Lattner · 17 years ago
- 759d8f6 teach codegen to lay out enum types. by Chris Lattner · 17 years ago
- 41b1fca move EmitAggregateCopy into AggExprEmitter by Chris Lattner · 17 years ago
- 246d965 remove dead code by Chris Lattner · 17 years ago
- dabc276 remove dead protos by Chris Lattner · 17 years ago
- 35055b8 eliminate EmitAnyExpr, inlining it and simplifying it into its only caller. by Chris Lattner · 17 years ago
- b06c8dd eliminate use of EmitAnyExpr. by Chris Lattner · 17 years ago
- 6197a23 implement a fixme by Chris Lattner · 17 years ago
- 9c9f4bb Implement compound assignment operators whose LHS is scalar but RHS is complex. by Chris Lattner · 17 years ago