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
/
CodeGen
/
CGClass.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Revert "DebugInfo: Generalize debug info location handling" and related commits
David Blaikie
2015-01-09
1
-8
/
+10
*
Reapply "DebugInfo: Generalize debug info location handling"
David Blaikie
2014-12-30
1
-10
/
+8
*
Revert "DebugInfo: Generalize debug info location handling"
David Blaikie
2014-12-29
1
-8
/
+10
*
Reapply "DebugInfo: Generalize debug info location handling"
David Blaikie
2014-12-29
1
-10
/
+8
*
Revert "DebugInfo: Generalize debug info location handling"
David Blaikie
2014-12-17
1
-8
/
+10
*
DebugInfo: Generalize debug info location handling
David Blaikie
2014-12-16
1
-10
/
+8
*
DebugInfo: Emit the correct location for initialization of a complex variable
David Blaikie
2014-12-09
1
-1
/
+1
*
DebugInfo: Correctly identify the location of C++ member initializer list ele...
David Blaikie
2014-12-09
1
-5
/
+7
*
No memcpy for copy ctor with -fsanitize-address-field-padding=1
Kostya Serebryany
2014-12-06
1
-2
/
+3
*
Cast vtable address points to i32 (...)** to enable more globalopt
Reid Kleckner
2014-12-03
1
-4
/
+8
*
Fix incorrect codegen for devirtualized calls to virtual overloaded operators.
Nico Weber
2014-12-03
1
-14
/
+0
*
Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...
David Blaikie
2014-11-19
1
-1
/
+1
*
[Sanitizer] Refactor sanitizer options in LangOptions.
Alexey Samsonov
2014-11-11
1
-2
/
+2
*
Introduce a SanitizerKind enum to LangOptions.
Alexey Samsonov
2014-11-07
1
-2
/
+2
*
Get rid of SanitizerOptions::Disabled global. NFC.
Alexey Samsonov
2014-10-30
1
-6
/
+4
*
fix -fsanitize-address-field-padding for the cases with virtual base classes
Kostya Serebryany
2014-10-17
1
-3
/
+1
*
Insert poisoned paddings between fields in C++ classes so that AddressSanitiz...
Kostya Serebryany
2014-10-16
1
-1
/
+73
*
MS ABI: Use the correct this arg when generating implicit array copy ctor
David Majnemer
2014-10-15
1
-3
/
+2
*
Sanitize upcasts and conversion to virtual base.
Alexey Samsonov
2014-10-13
1
-6
/
+17
*
CodeGen: FieldMemcpyizer didn't handle copies starting inside bitfields
David Majnemer
2014-10-10
1
-4
/
+16
*
Add support for putting constructors and destructos in explicit comdats.
Rafael Espindola
2014-09-16
1
-0
/
+3
*
MS ABI: Use the correct this arg when generating implict copy ctor
David Majnemer
2014-09-11
1
-4
/
+5
*
Merge GetAddrOfCXXConstructor and GetAddrOfCXXDonstructor. NFC.
Rafael Espindola
2014-09-11
1
-3
/
+4
*
Implement nonnull-attribute sanitizer
Alexey Samsonov
2014-09-08
1
-2
/
+3
*
Handle constructors and destructors a bit more uniformly in CodeGen.
Rafael Espindola
2014-09-08
1
-1
/
+2
*
Kill one of EmitCallArgs overloads. NFC.
Alexey Samsonov
2014-08-28
1
-2
/
+1
*
Fix an incorrect assert condition added in r216410.
Alexey Samsonov
2014-08-26
1
-1
/
+1
*
Pass actual CXXConstructExpr instead of argument iterators
Alexey Samsonov
2014-08-25
1
-5
/
+4
*
Pass expressions instead of argument ranges to EmitCall/EmitCXXConstructorCall.
Alexey Samsonov
2014-08-21
1
-31
/
+22
*
[modules] Remove IRGen special case for emitting implicit special members if
Richard Smith
2014-08-01
1
-1
/
+3
*
Convert some function arguments to use ArrayRef.
Craig Topper
2014-06-26
1
-1
/
+1
*
Start adding support for dllimport/dllexport on classes (PR11170)
Hans Wennborg
2014-05-30
1
-2
/
+2
*
[C++11] Use 'nullptr'. CodeGen edition.
Craig Topper
2014-05-21
1
-49
/
+49
*
[C++11] Replacing CompoundStmt iterators body_begin() and body_end() with ite...
Aaron Ballman
2014-03-17
1
-5
/
+2
*
[C++11] Replacing CXXRecordDecl iterators vbases_begin() and vbases_end() wit...
Aaron Ballman
2014-03-13
1
-8
/
+3
*
[C++11] Replacing CXXRecordDecl iterators bases_begin() and bases_end() with ...
Aaron Ballman
2014-03-13
1
-14
/
+8
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-12
1
-6
/
+6
*
[C++11] Replacing RecordDecl iterators field_begin() and field_end() with ite...
Aaron Ballman
2014-03-08
1
-15
/
+5
*
Renaming the chains() ranged iterator to chain() per suggestion by Richard Sm...
Aaron Ballman
2014-03-07
1
-1
/
+1
*
[C++11] Replacing IndirectFieldDecl iterators chain_begin() and chain_end() w...
Aaron Ballman
2014-03-07
1
-4
/
+2
*
[C++11] Replacing BlockDecl iterators param_begin() and param_end() with iter...
Aaron Ballman
2014-03-07
1
-4
/
+2
*
[C++11] Replacing FunctionDecl iterators param_begin() and param_end() with i...
Aaron Ballman
2014-03-07
1
-5
/
+3
*
[ms-cxxabi] Use inalloca on win32 when passing non-trivial C++ objects
Reid Kleckner
2014-02-01
1
-2
/
+1
*
Rename getResultType() on function and method declarations to getReturnType()
Alp Toker
2014-01-25
1
-1
/
+1
*
CodeGen: Handle PGO counters for constructors and destructors
Justin Bogner
2014-01-23
1
-0
/
+6
*
Rename FunctionProtoType accessors from 'arguments' to 'parameters'
Alp Toker
2014-01-20
1
-3
/
+3
*
[ms-abi] Always generate complete constructors in the Microsoft C++ ABI
Reid Kleckner
2014-01-13
1
-0
/
+4
*
Sort all the #include lines with LLVM's utils/sort_includes.py which
Chandler Carruth
2014-01-07
1
-1
/
+1
*
Fix comment-code function name mismatch
Hans Wennborg
2013-12-18
1
-2
/
+2
*
[ms-cxxabi] The 'most derived' ctor parameter usually comes last
Reid Kleckner
2013-12-17
1
-3
/
+26
[next]