index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
CGObjCRuntime.cpp
Age
Commit message (
Expand
)
Author
2013-04-16
Standardize accesses to the TargetInfo in IR-gen.
John McCall
2013-02-28
Use the actual ABI-determined C calling convention for runtime
John McCall
2012-12-06
Rework the bitfield access IR generation to address PR13619 and
Chandler Carruth
2012-12-04
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-11-06
Put something sane in the DWARF offset field for bitfield ObjC ivars.
Eli Friedman
2012-11-06
Back out 167431+167437+167487; I didn't realize how incomplete our test
Eli Friedman
2012-11-06
Propagate CharUnits into ObjC CodeGen. No intended functional change.
Eli Friedman
2012-07-07
Distinguish more carefully between free functions and C++ instance methods
John McCall
2012-06-27
Propagate lvalue alignment into bitfields. Per report on cfe-dev.
Eli Friedman
2012-06-15
Documentation fix: made the name given to \param match the code.
James Dennett
2012-03-11
Unify naming of LangOptions variable/get function across the Clang stack (Lex...
David Blaikie
2012-02-17
Whether an argument is required (in contrast with being an
John McCall
2012-02-07
simplify a bunch of code to use the well-known LLVM IR types computed by Code...
Chris Lattner
2012-01-17
When initializing a catch variable in ARC, be sure to emit retains
John McCall
2011-12-19
Switch a few callers of MakeAddrLValue places over to MakeNaturalAlignAddrLVa...
Eli Friedman
2011-12-15
Replace all comparisons between ObjCInterfaceDecl pointers with calls
Douglas Gregor
2011-10-19
Add block information for ObjC @catch blocks.
Eric Christopher
2011-10-10
Constant expression evaluation refactoring:
Richard Smith
2011-09-15
Refactor the load of the exception pointer and the exception selector from their
Bill Wendling
2011-09-02
Extend the ASTContext constructor to delay the initialization of
Douglas Gregor
2011-08-11
Simplify EH control flow by observing that EH scopes form a simple
John McCall
2011-07-27
The lock operand to an @synchronized statement is also
John McCall
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-22
Add a const overload for ObjCInterfaceDecl::all_declared_ivar_begin.
Jordy Rose
2011-07-18
de-constify llvm::Type, patch by David Blaikie!
Chris Lattner
2011-07-15
Convert CallInst and InvokeInst APIs to use ArrayRef.
Jay Foad
2011-07-12
Generalize Cleanup::Emit's "isForEH" parameter into a set
John McCall
2011-06-28
Eliminate most uses of ShallowCollectObjCIvars which requires
Fariborz Jahanian
2011-06-22
Emit @finally blocks completely lazily instead of forcing their
John McCall
2011-06-16
Restore correct use of GC barriers.
John McCall
2011-05-23
Fix some problems where functions must be bitcast but we're expecting a llvm:...
David Chisnall
2011-05-12
Make this code more resilient against catch variables which need cleanups.
John McCall
2011-04-22
Replace some literal 8s with char width and char align. No change in
Ken Dyck
2011-04-14
Replace a couple of divide-by-8s with divide-by-charwidths. No change in
Ken Dyck
2011-03-25
Continuing work on ObjC tidyup:
David Chisnall