index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
clang
/
AST
/
APValue.h
Age
Commit message (
Expand
)
Author
2012-12-04
Sort #include lines for all files under include/...
Chandler Carruth
2012-03-10
Assign APValues by swapping from a temporary. Removes a bunch of unnecessary
Richard Smith
2012-03-08
[AST] APValue: Split the fast path of MakeUninit to be inline.
Daniel Dunbar
2012-02-15
Implement DR1454. This allows all intermediate results in constant expressions
Richard Smith
2012-01-05
Change casting slightly to avoid warnings about casting away const.
Eli Friedman
2012-01-04
Add an APValue representation for the difference between two address-of-label...
Eli Friedman
2011-12-16
C++11 constexpr: Add note stacks containing backtraces if constant evaluation
Richard Smith
2011-11-17
Constant expression evaluation: add support for evaluation of member pointers
Richard Smith
2011-11-12
Represent an APValue based on a Decl as that Decl, rather than a DeclRefExpr
Richard Smith
2011-11-10
include/clang/AST/APValue.h: Try to fix *900* of cast-qual warnings by g++.
NAKAMURA Takumi
2011-11-10
Constant expression evaluation: support for evaluation of structs and unions of
Richard Smith
2011-11-07
Constant expression evaluation: support for arrays.
Richard Smith
2011-11-07
Constant expression evaluation: preserve subobject designator when flattening a
Richard Smith
2011-10-29
constexpr function substitution:
Richard Smith
2011-07-20
add raw_ostream and Twine to LLVM.h, eliminating a ton of llvm:: qualifications.
Chris Lattner
2011-07-18
Define DiagnosticBuilder<<APValue so it's easy to include APValues in
Jeffrey Yasskin
2011-05-13
Refactoring of constant expression evaluator
Peter Collingbourne
2010-04-19
Fix -Wcast-qual warnings.
Dan Gohman
2010-01-15
Convert the type of the LValue offset variable in APValue to CharUnits, moving
Ken Dyck
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-08
Make sure to access APValue's data via a char array (rather than
Douglas Gregor
2009-01-24
Fix invalid evaluation of _Complex float (real & imaginary parts had
Daniel Dunbar
2009-01-21
initialialize some ivars in ctor.
Chris Lattner
2009-01-18
Add support for vectors to APValue. Vector constant evaluator and tests coming.
Nate Begeman
2008-11-16
add dump and print methods, add operator<< for APValue.
Chris Lattner
2008-11-16
move some APValue methods out of line.
Chris Lattner
2008-07-11
rename "SInt" methods to "Int" in APValue.
Chris Lattner
2008-07-11
make the new evaluator avoid conversions APValue<->APSInt in some cases.
Chris Lattner
2008-07-08
Add LValue setters for APValue
Anders Carlsson
2008-07-03
Shuffle things around in preparation for integrating Eli's constant evaluator.
Anders Carlsson
2008-07-03
Make APValue an APSInt.
Anders Carlsson
2008-06-22
add a new clang::APValue class at Eli's request. It is a discriminated
Chris Lattner