- 19a1d7c implement codegen support for aggregates casted to void. by Chris Lattner · 17 years ago
- fea90b8 Implement extern block var. by Lauro Ramos Venancio · 17 years ago
- c5773c4 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 17 years ago
- 3c2b317 Remove useless parameter from isConstantSizeType. by Eli Friedman · 17 years ago
- d254f00 Adjust for the API change to APInt::getBitsSet. by Dan Gohman · 17 years ago
- 0d0ba19 strings are arrays too by Chris Lattner · 17 years ago
- ff6e2b7 A couple of minor fixes to aggregate codegen, to stop asserting on some by Eli Friedman · 17 years ago
- 546d94c Make unsupported constant exprs fail with a warning instead of crashing by Eli Friedman · 17 years ago
- a7ad98f Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 17 years ago
- a28ef8b Implement __builtin_va_copy by Anders Carlsson · 17 years ago
- 472778e Expose the logic for field address codegen; it is needed for aggregate by Eli Friedman · 17 years ago
- c0959fc Fix a bitfield regression. Reported by Anders Carlsson. by Lauro Ramos Venancio · 17 years ago
- dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 17 years ago
- 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 17 years ago
- d957aa0 Simplify bitfield codegen. Fix codegen of struct { short a[3]; int b:15; }. by Lauro Ramos Venancio · 17 years ago
- 8432f4b Fix codegen of struct { char a[3]; unsigned char b:1; }; by Lauro Ramos Venancio · 17 years ago
- 61900f0 Handle top-level asm declarations. by Anders Carlsson · 17 years ago
- 87a9875 Add pointer + int (and vice versa) to the constant emitter. by Anders Carlsson · 17 years ago
- 3a31d60 Generate code for the various __builtin_ctz functions. by Anders Carlsson · 17 years ago
- 8fb1dd0 now that ConvertTagDeclType is nice and simple, use it from UpdateCompletedType. by Chris Lattner · 17 years ago
- 5de00fc simplify and speed up type refinement logic. No functionality change. by Chris Lattner · 17 years ago
- de0efb3 only convert the type name once, not each type it is refined. by Chris Lattner · 17 years ago
- fae6e29 simplify a bunch of code. by Chris Lattner · 17 years ago
- 4581fff rename TypeHolderMap to TypeCache, which more aptly describes what it is. by Chris Lattner · 17 years ago
- fc3b8e9 split tagged decl layout into its own method. by Chris Lattner · 17 years ago
- 6ef58e3 only update the llvm type for a struct when we used the struct by Chris Lattner · 17 years ago
- c5b8806 sink more of the type related code into CodeGenTypes. by Chris Lattner · 17 years ago
- 352ffde2 codegen static variables in a function into a different namespace from by Chris Lattner · 17 years ago
- 9eee0f8 Finish off the refactoring of type handling stuff. Now we recompile every by Chris Lattner · 17 years ago
- 8ee3c03 move the codegen ASTConsumer out of the driver into libcodegen, by Chris Lattner · 17 years ago
- ea04175 Even more inline asm codegen fixes. by Anders Carlsson · 17 years ago
- 4efe459 simple implementation of __builtin_alloca by Nate Begeman · 17 years ago
- 2abd25f Improvements to inline asm code generation. by Anders Carlsson · 17 years ago
- 7be3d01 Add some binops. by Anders Carlsson · 17 years ago
- f39a421 More improvements to inline asm CG. by Anders Carlsson · 17 years ago
- cad3ab6 Append input argument to args vector. by Anders Carlsson · 17 years ago
- fb1aeb8 Add code generation for inline asm statements. by Anders Carlsson · 17 years ago
- d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 17 years ago
- af31913 Change the key of CGRecordLayouts from being an llvm type* to being a decl*. LLVM by Chris Lattner · 17 years ago
- c4b23a5 Relax an assertion, fixing PR1968 by Chris Lattner · 17 years ago
- 4c4635c by Devang Patel · 17 years ago
- eae1560 Cleanup InitListExpr code generation code. by Devang Patel · 17 years ago
- 0ded75b Fix memory corruption from the type map being modified while a reference by Eli Friedman · 17 years ago
- 5bfc1a7 Keep track of padding fields. by Devang Patel · 17 years ago
- ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 17 years ago
- 3b1ae00 minor tweak to anders patch: (only) ocu vectors support splatting, but by Chris Lattner · 17 years ago
- 4957378 fix codegen on static variables which have multiple decl nodes. These by Chris Lattner · 17 years ago
- 79b67f3 Only OCU vectors can be splatted. by Anders Carlsson · 17 years ago
- 478547c Generate correct code for __builtin_huge_val by Anders Carlsson · 17 years ago
- f7682b0 Implement __builtin_huge_val. by Anders Carlsson · 17 years ago
- 0e82d72 Implement review feedback. Use getAsPointerType instead of cast<PointerType>. by Lauro Ramos Venancio · 17 years ago
- 796ef3d Remainder of the __builtin_overload feedback by Nate Begeman · 17 years ago
- 6860f3c Fix PR1921 by promoting negative indices to intptrty. by Chris Lattner · 17 years ago
- 5bfe18c getLLVMFieldNo can't be called before emitting the base value. by Lauro Ramos Venancio · 17 years ago
- 8df106e A pointer to an opaque type is an "opaque type definition". by Lauro Ramos Venancio · 17 years ago
- 67295d0 Implement first round of feedback on __builtin_overload by Nate Begeman · 17 years ago
- 01e3c9e fix a problem reported by Eli, caused by not keeping bool as i1 by Chris Lattner · 17 years ago
- db6ed17 move some constructors out of line and fix indentation in ObjCAtThrowStmt::getSourceRange. by Chris Lattner · 17 years ago
- 5193b8a Make sure to emit all the arguments to a function call. This fixes the by Eli Friedman · 17 years ago
- 47fb697 Handle incomplete struct initializer. by Devang Patel · 17 years ago
- 356916e Fix a bug where CodeGen would attempt to erase an instruction that was by Eli Friedman · 17 years ago
- 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 17 years ago
- ce6237e Handle binary or in constant expressions. by Anders Carlsson · 17 years ago
- a3881fc Correctly handle constants that refer to enums. by Anders Carlsson · 17 years ago
- f6884ac Correctly handle scalars in braces. by Anders Carlsson · 17 years ago
- 84005b4 Tweaks to EmitLValue in CGExprConstant. Patch by Eli Friedman. by Anders Carlsson · 17 years ago
- e3d3b7d Add CodeGen for AddrOf in constant initializers. Original patch by Eli Friedman. by Anders Carlsson · 17 years ago
- 3b1d57b Factor out the constant generation into its own file. by Anders Carlsson · 17 years ago
- d6326c6 by Steve Naroff · 17 years ago
- d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 17 years ago
- 7d6b46d Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 17 years ago
- 6553982 Fix a typo. by Lauro Ramos Venancio · 17 years ago
- a0c5d0e Implement bitfield write. by Lauro Ramos Venancio · 17 years ago
- 3b8c22d Implement bitfield read. by Lauro Ramos Venancio · 17 years ago
- 9e18d3e Fix two bugs in bitfield codegen. by Lauro Ramos Venancio · 17 years ago
- 2c46ce8 Simplify the bitfield codegen. by Lauro Ramos Venancio · 17 years ago
- a46b759 Assert that the type of the cast is equal to the _unqualified_ type of the subexpression. Fixes a problem spotted by Nuno Lopes. by Anders Carlsson · 17 years ago
- eed5058 Match change in EmitCallExpr by Nate Begeman · 17 years ago
- 104a8c0 Fix for EmitCallExpr changed in OverloadExpr patch by Nate Begeman · 17 years ago
- e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
- e4707ff Add codegen upport for implicit casts to aggregate exprs. by Anders Carlsson · 17 years ago
- fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
- c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
- 19009e6 implement proper support for _Bool in memory, which is usually i8, not i1. by Chris Lattner · 17 years ago
- a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
- c89bf69 fix long lines. by Chris Lattner · 17 years ago
- 8f92528 Fix a crash reported by Seo Sanghyeon. by Chris Lattner · 17 years ago
- 4119d1a Allow implicit casts during arithmetic for OCUVector operations by Nate Begeman · 17 years ago
- b3ab8dc Allow codegen of vector fdiv by Nate Begeman · 17 years ago
- 17930d9 implement codegen support for most unary operators when by Chris Lattner · 17 years ago
- 6298b8c remove attribution from makefiles. by Chris Lattner · 17 years ago
- 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
- 22c940e Enable CodeGen for member expressions based on call expressions returning aggregate types. This enables expressions like 'foo().member.submember'. by Christopher Lamb · 17 years ago
- d3ba3f4 Make MemberExpr code safe w.r.t. address spaces. by Christopher Lamb · 17 years ago
- b5ce097 No need to do work that the folding builder does for us. by Anders Carlsson · 17 years ago
- 9bb947a Remove broken assert from CodeGen. Better check is done in Sema. by Seo Sanghyeon · 17 years ago
- ad6ebd6 String literal in aggregate expression by Seo Sanghyeon · 17 years ago
- 3c40085 Convert opaque type when struct definition is seen. by Devang Patel · 17 years ago
- dd6ecdb Keep track of llvm struct size while adding fields. by Devang Patel · 17 years ago
- fe23e21 Implement codegen for ordered comparison builtins. by Chris Lattner · 17 years ago