index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
CodeGen
/
CGStmt.cpp
Age
Commit message (
Expand
)
Author
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner
2008-02-26
Fix a bug in ConvertAsmString function.
Lauro Ramos Venancio
2008-02-26
Convert x86 target specific inline asm constraints to LLVM.
Lauro Ramos Venancio
2008-02-06
Even more inline asm codegen fixes.
Anders Carlsson
2008-02-05
Improvements to inline asm code generation.
Anders Carlsson
2008-02-05
More improvements to inline asm CG.
Anders Carlsson
2008-02-05
Append input argument to args vector.
Anders Carlsson
2008-02-05
Add code generation for inline asm statements.
Anders Carlsson
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-02
convert the rest of the stderr users in codegen to use diagnostics.
Chris Lattner
2007-12-02
move unsupported warning into a centralized place.
Chris Lattner
2007-12-02
Warn about unsupported codegen with the diags machinery, giving us:
Chris Lattner
2007-12-02
Add support for __builtin_expect which is needed for assert,
Oliver Hunt
2007-12-01
fix a couple switch codegen problems Oliver reported.
Chris Lattner
2007-11-30
Support fully general case expressions, patch by Sanghyeon Seo!
Chris Lattner
2007-10-30
Fix 80 col violations.
Devang Patel
2007-10-09
Recognize while(1) and avoid extra blocks.
Devang Patel
2007-10-09
Recognize "do {} while (0)" idiom and avoid extra basic blocks.
Devang Patel
2007-10-09
Use const& for RHS.
Devang Patel
2007-10-08
Code gen case statement ranges.
Devang Patel
2007-10-05
Support case statement ranges.
Devang Patel
2007-10-04
switch statement code gen.
Devang Patel
2007-09-28
Do not codegen dummy block.
Devang Patel
2007-09-13
Move Decl::NextDeclarator (w/ setters/getters) down to ScopedDecl/FieldDecl.
Steve Naroff
2007-09-13
When dumping out errors about unsupported stuff, emit loc info.
Chris Lattner
2007-08-31
Generalize RValue to handle complex better, generalize EmitCompoundStmt to
Chris Lattner
2007-08-31
implement code generation for scalar stmt expressions.
Chris Lattner
2007-08-26
eliminate EmitAnyExpr, inlining it and simplifying it into its only caller.
Chris Lattner
2007-08-26
be slightly more volatile correct
Chris Lattner
2007-08-26
Fix return of aggregate and return of complex.
Chris Lattner
2007-08-26
these implicit conversions are now explicit :)
Chris Lattner
2007-08-24
completely refactor codegen of scalar expressions out into its own CGExprScal...
Chris Lattner
2007-08-23
implement passing of complex and aggregates through call args.
Chris Lattner
2007-08-21
Split complex arithmetic codegen out from aggregate codegen.
Chris Lattner
2007-08-11
start splitting out aggregate value computation from EmitExpr into EmitAggExpr.
Chris Lattner
2007-07-16
Implement break and continue. Patch by Anders Carlsson!
Chris Lattner
2007-07-13
silence a bogus gcc warning.
Chris Lattner
2007-07-12
Fix "no newline at end of file" warnings. Patch contributed by
Chris Lattner
2007-07-11
Stage two of getting CFE top correct.
Reid Spencer