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
/
MicrosoftCXXABI.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Recommit r326946 after reducing CallArgList memory footprint
Yaxun Liu
2018-03-15
1
-2
/
+1
*
Revert r326946. It caused stack overflows by significantly increasing the siz...
Richard Smith
2018-03-10
1
-1
/
+2
*
[ms] Emit vtordisp initializers in a deterministic order.
Nico Weber
2018-03-07
1
-5
/
+6
*
CodeGen: Fix address space of indirect function argument
Yaxun Liu
2018-03-07
1
-2
/
+1
*
Remove redundant casts. NFC
George Burgess IV
2018-03-01
1
-2
/
+1
*
Start setting dllimport/dllexport in setGVProperties.
Rafael Espindola
2018-03-01
1
-4
/
+3
*
Pass around function pointers as CGCallees, not bare llvm::Value*s.
John McCall
2018-02-06
1
-15
/
+20
*
IRGen: Move vtable load after argument evaluation.
Peter Collingbourne
2018-02-05
1
-23
/
+18
*
Add support for attribute 'trivial_abi'.
Akira Hatanaka
2018-02-05
1
-24
/
+39
*
IRGen: When performing CFI checks, load vtable pointer from vbase when necess...
Peter Collingbourne
2017-12-13
1
-7
/
+22
*
[MS] Apply adjustments after storing 'this'
Reid Kleckner
2017-11-16
1
-37
/
+38
*
[MS] Don't bail on replacing dllimport vbase dtors with base dtors
Reid Kleckner
2017-10-13
1
-1
/
+1
*
PR19668, PR23034: Fix handling of move constructors and deleted copy
Richard Smith
2017-08-16
1
-27
/
+25
*
Revert "PR19668, PR23034: Fix handling of move constructors and deleted copy ...
Diana Picus
2017-08-09
1
-25
/
+27
*
PR19668, PR23034: Fix handling of move constructors and deleted copy
Richard Smith
2017-08-08
1
-27
/
+25
*
Add branch weights to branches for static initializers.
Richard Smith
2017-07-26
1
-4
/
+6
*
[modules ts] Basic for module linkage.
Richard Smith
2017-07-07
1
-0
/
+2
*
[DebugInfo] Add kind of ImplicitParamDecl for emission of FlagObjectPointer.
Alexey Bataev
2017-06-09
1
-14
/
+15
*
Emit available_externally vtables opportunistically
Piotr Padlewski
2017-06-01
1
-0
/
+3
*
Spelling mistakes in comments. NFCI. (PR27635)
Simon Pilgrim
2017-03-30
1
-1
/
+1
*
Update Clang for LLVM rename AttributeSet -> AttributeList
Reid Kleckner
2017-03-21
1
-12
/
+11
*
Promote ConstantInitBuilder to be a public CodeGen API; it's
John McCall
2017-03-02
1
-1
/
+1
*
[CodeGen] Fix ExtParameterInfo bugs in C++ CodeGen code.
George Burgess IV
2017-02-23
1
-1
/
+1
*
[CodeGen] Note where we add ABI-specific args in ctors. NFC.
George Burgess IV
2017-02-22
1
-23
/
+30
*
Move vtable type metadata emission behind a cc1-level flag.
Peter Collingbourne
2017-01-18
1
-1
/
+1
*
CodeGen: update comment about RTTI field
Saleem Abdulrasool
2017-01-01
1
-1
/
+1
*
CodeGen: fix runtime function dll storage
Saleem Abdulrasool
2016-12-15
1
-4
/
+8
*
CodeGen: New vtable group representation: struct of vtable arrays.
Peter Collingbourne
2016-12-13
1
-9
/
+7
*
[MS-ABI]V-base dtor called more than needed when throw happens in v-base ctor...
Erich Keane
2016-12-07
1
-0
/
+32
*
Make CGVTables use ConstantInitBuilder. NFC.
John McCall
2016-11-28
1
-3
/
+5
*
Remove C++ default arg side table for MS ABI ctor closures
Reid Kleckner
2016-11-23
1
-5
/
+5
*
Sema, CodeGen: Ensure that an implicit copy ctor is available more often unde...
Peter Collingbourne
2016-11-22
1
-9
/
+16
*
Fix PR31029 by attaching an artificial debug location to msabi thunks.
Adrian Prantl
2016-11-16
1
-0
/
+3
*
[MS ABI] Reuse getVFPtrOffsets instead of using getClassAtVTableLocation
David Majnemer
2016-10-27
1
-40
/
+16
*
Refactor call emission to package the function pointer together with
John McCall
2016-10-26
1
-17
/
+28
*
MS ABI: Fix assert when generating virtual function call with virtual bases a...
Hans Wennborg
2016-10-19
1
-9
/
+2
*
Use unique_ptr for VPtrLocationsMap and VPtrInfoVector.
Justin Lebar
2016-10-10
1
-29
/
+29
*
[MS ABI] Add /include directives for dynamic TLS
David Majnemer
2016-09-12
1
-0
/
+8
*
CodeGen: Clean up implementation of vtable initializer builder. NFC.
Peter Collingbourne
2016-09-08
1
-5
/
+3
*
[MS] Pass non-trivially-copyable objects indirectly on Windows ARM
Reid Kleckner
2016-08-25
1
-0
/
+6
*
Don't crash when generating code for __attribute__((naked)) member functions.
Justin Lebar
2016-07-27
1
-0
/
+4
*
[MS] Improve VPtrInfo field names and doc comments
Reid Kleckner
2016-07-20
1
-16
/
+16
*
[MS ABI] Support throwing/catching __unaligned types
David Majnemer
2016-07-12
1
-7
/
+15
*
[MS ABI] Some code cleanups
David Majnemer
2016-07-09
1
-9
/
+6
*
[DebugInfo] Set DISubprogram ThisAdjustment in the MS ABI
Reid Kleckner
2016-07-01
1
-1
/
+1
*
CodeGen: Start emitting checked loads when both trapping CFI and -fwhole-prog...
Peter Collingbourne
2016-06-25
1
-6
/
+13
*
CodeGen: Update Clang to use the new type metadata.
Peter Collingbourne
2016-06-24
1
-16
/
+13
*
Update clang for D20348
Peter Collingbourne
2016-06-14
1
-7
/
+7
*
[MS ABI] Delegating constructors should not assume they are most derived
David Majnemer
2016-05-13
1
-9
/
+11
*
Re-apply r267784, r267824 and r267830.
Peter Collingbourne
2016-04-28
1
-10
/
+7
[next]