index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
AST
/
ExprConstant.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
A bit of Evaluate cleanup. Also, a full audit of what's missing that
Eli Friedman
2009-02-22
1
-22
/
+33
*
Enhance Evaluate to handle ObjC qualified id and class types; as far as
Eli Friedman
2009-02-22
1
-4
/
+9
*
Fix for PR3433: map __alignof__ to preferred alignment. (This was
Eli Friedman
2009-02-22
1
-1
/
+1
*
Evaluation of unary deref could call integer evaluator on non-integral
Daniel Dunbar
2009-02-21
1
-0
/
+7
*
Handle constant int -> ptr casts of lvalue results.
Daniel Dunbar
2009-02-20
1
-8
/
+17
*
Add support for * (unary dereference) operator to ExprConstant.
Eli Friedman
2009-02-20
1
-0
/
+9
*
ExprConstant handling for a couple more cases of pointer-to-int casts
Eli Friedman
2009-02-20
1
-3
/
+18
*
Extend Evaluate() to fold (int) <pointer type>.
Daniel Dunbar
2009-02-19
1
-4
/
+11
*
Simplify, no functionality change.
Daniel Dunbar
2009-02-19
1
-6
/
+6
*
Add enough checking to ensure that non-constant block literals don't
Mike Stump
2009-02-19
1
-1
/
+5
*
Change IntExprEvaluator to operate on an APValue not an APSInt.
Daniel Dunbar
2009-02-19
1
-37
/
+55
*
Add another IntExprEvaluator::Success overload to suck up remained of
Daniel Dunbar
2009-02-19
1
-43
/
+49
*
Add IntExprEvaluator::Success method.
Daniel Dunbar
2009-02-19
1
-174
/
+77
*
Handle the GNU void* and function pointer arithmetic extensions for constant ...
Anders Carlsson
2009-02-19
1
-1
/
+7
*
More codegen for blocks. The type of block literals should be better.
Mike Stump
2009-02-19
1
-0
/
+1
*
Codegen for int (^bp)(int) = 0;
Mike Stump
2009-02-18
1
-2
/
+4
*
Rename UnaryTypeTraitExpr::Evaluate to EvaluateTrait to not collide
Daniel Dunbar
2009-02-17
1
-1
/
+1
*
Eek! getDeclAlign sometimes returned alignment in bits.
Daniel Dunbar
2009-02-17
1
-2
/
+2
*
Renamed ASQualType to ExtQualType to reflect its more
Fariborz Jahanian
2009-02-17
1
-2
/
+2
*
Add hook to add attributes to function declarations that we know
Douglas Gregor
2009-02-14
1
-3
/
+4
*
Teach the constant evaluator about C++ const integral variables.
Sebastian Redl
2009-02-08
1
-1
/
+10
*
Evaluate ==,!= for complex types.
Daniel Dunbar
2009-01-29
1
-0
/
+44
*
Evaluate casts to complex.
Daniel Dunbar
2009-01-29
1
-30
/
+103
*
move library-specific diagnostic headers into library private dirs. Reduce
Chris Lattner
2009-01-29
1
-1
/
+1
*
Add folding for complex mul and fix some major bugs in complex float
Daniel Dunbar
2009-01-29
1
-2
/
+37
*
Implement basic _Complex integer constant folding.
Daniel Dunbar
2009-01-28
1
-33
/
+67
*
Split the single monolithic DiagnosticKinds.def file into one
Chris Lattner
2009-01-27
1
-1
/
+1
*
Make the constant folder aware of
Eli Friedman
2009-01-25
1
-0
/
+7
*
Fix the address of a label to be properly considered and emitted as a
Eli Friedman
2009-01-25
1
-0
/
+2
*
Refactor sizeof handling to use constant folding logic for constant
Eli Friedman
2009-01-24
1
-5
/
+10
*
add initial support for the gcc "alignof(decl) is the alignment of the decl
Chris Lattner
2009-01-24
1
-5
/
+14
*
Improve handling of alignof. alignof(VLA) now works properly for example.
Chris Lattner
2009-01-24
1
-13
/
+50
*
Fix invalid evaluation of _Complex float (real & imaginary parts had
Daniel Dunbar
2009-01-24
1
-2
/
+8
*
Support evaluation of vector constant expressions, and codegen of same.
Nate Begeman
2009-01-18
1
-1
/
+77
*
postpone sizeof objc-class computatin to the clients.
Fariborz Jahanian
2009-01-16
1
-0
/
+4
*
Fix some unused variable, control reaches end of non-void function,
Daniel Dunbar
2009-01-15
1
-0
/
+1
*
PODness and Type Traits
Sebastian Redl
2009-01-05
1
-0
/
+6
*
Add codegen support for __null
Anders Carlsson
2008-12-21
1
-0
/
+6
*
Add support for member references (E1.E2, E1->E2) with C++ semantics,
Douglas Gregor
2008-12-20
1
-1
/
+4
*
Get rid of the old Expr::Evaluate variant.
Anders Carlsson
2008-12-19
1
-17
/
+4
*
Unifies the name-lookup mechanisms used in various parts of the AST
Douglas Gregor
2008-12-11
1
-3
/
+5
*
Workaround for PR3173. The fix is correct in the sense that if the enum
Eli Friedman
2008-12-08
1
-0
/
+3
*
This wasn't such a good idea after all as it broke some tests.
Anders Carlsson
2008-12-05
1
-10
/
+1
*
Handle __builtin___CFStringMakeConstantString in Expr::Evaluate.
Anders Carlsson
2008-12-05
1
-1
/
+10
*
Generate the correct results for the comma expression. Fixes PR3123.
Anders Carlsson
2008-12-01
1
-7
/
+10
*
Emit the correct diagnostic when a comma is in an ICE.
Anders Carlsson
2008-12-01
1
-4
/
+4
*
Change the diagnostics that the evaluator reports to be of type NOTE.
Anders Carlsson
2008-11-30
1
-11
/
+10
*
Replace the isEvaluated bool with a ShortCircuit int, making it easier to han...
Anders Carlsson
2008-11-30
1
-12
/
+10
*
Pass the expression to the Error and Extension methods.
Anders Carlsson
2008-11-30
1
-20
/
+22
*
Add a new variant of Evaluate and reimplement the old Evaluate in terms of th...
Anders Carlsson
2008-11-30
1
-7
/
+17
[prev]
[next]