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
/
llvm
/
lib
/
IR
/
DataLayout.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add default address space for functions to the data layout (1/3)
Dylan McKay
2018-02-19
1
-3
/
+14
*
Adding a width of the GEP index to the Data Layout.
Elena Demikhovsky
2018-02-14
1
-10
/
+51
*
Support, IR, ADT: Check nullptr after allocation with malloc/realloc or calloc
Matthias Braun
2017-07-20
1
-0
/
+2
*
Sort the remaining #include lines in include/... and lib/....
Chandler Carruth
2017-06-06
1
-1
/
+1
*
[DataLayout] Add llvm_unreachable to the default of a nested switch statement...
Craig Topper
2017-05-22
1
-1
/
+1
*
[IR] Fix some Clang-tidy modernize-use-using warnings; other minor fixes (NFC).
Eugene Zelenko
2017-05-05
1
-12
/
+15
*
[DataLayout] Removed default value from a variable that isn't used without be...
Craig Topper
2017-04-19
1
-3
/
+2
*
[IR] Implement DataLayout::getPointerTypeSizeInBits using getPointerSizeInBit...
Craig Topper
2017-04-17
1
-5
/
+2
*
Allow DataLayout to specify addrspace for allocas.
Matt Arsenault
2017-04-10
1
-0
/
+8
*
[IR] Use a binary search in DataLayout::getAlignmentInfo
Craig Topper
2017-03-23
1
-58
/
+47
*
[IR] Remove validAlignment and validPointer methods DataLayout as they aren't...
Craig Topper
2017-03-21
1
-6
/
+0
*
IR: Change the gep_type_iterator API to avoid always exposing the "current" t...
Peter Collingbourne
2016-12-02
1
-6
/
+3
*
[IR/DataLayout] Simplify the code using PowerOf2Ceil. NFCI.
Davide Italiano
2016-11-11
1
-6
/
+2
*
[IR] Introduce a non-integral pointer type
Sanjoy Das
2016-07-28
1
-0
/
+14
*
[IR] Make getIndexedOffsetInType return a signed result
David Majnemer
2016-07-13
1
-5
/
+5
*
Rename getLargestLegalIntTypeSize to getLargestLegalIntTypeSizeInBits(). NFC.
Jun Bum Lim
2016-05-13
1
-1
/
+1
*
Replace Type::getInt32Ty() and comparison by isIntegerTy(32). NFC.
Manuel Jacob
2016-01-22
1
-3
/
+1
*
[opaque pointer types] [NFC] DataLayout::getIndexedOffset: take source elemen...
Eduard Burtescu
2016-01-22
1
-19
/
+12
*
[opaque pointer types] [NFC] gep_type_{begin,end} now take source element typ...
Eduard Burtescu
2016-01-22
1
-1
/
+4
*
GlobalValue: use getValueType() instead of getType()->getPointerElementType().
Manuel Jacob
2016-01-16
1
-1
/
+1
*
Update to use new name alignTo().
Rui Ueyama
2016-01-14
1
-2
/
+2
*
Instcombine: destructor loads of structs that do not contains padding
Mehdi Amini
2015-12-15
1
-2
/
+7
*
Revert "Add const to a bunch of Type* in DataLayout. NFC."
Pete Cooper
2015-07-27
1
-13
/
+13
*
Add const to a bunch of Type* in DataLayout. NFC.
Pete Cooper
2015-07-24
1
-13
/
+13
*
fix formatting; NFC
Sanjay Patel
2015-07-21
1
-2
/
+2
*
COFF: Let globals with private linkage reside in their own section
David Majnemer
2015-03-17
1
-3
/
+6
*
Teach DataLayout to infer a plausible alignment for things even when nothing ...
Owen Anderson
2015-03-08
1
-3
/
+14
*
Make DataLayout Non-Optional in the Module
Mehdi Amini
2015-03-04
1
-90
/
+3
*
Teach DataLayout that alignments on basic types must be powers of two.
Owen Anderson
2015-03-02
1
-0
/
+4
*
Teach DataLayout that ABI alignments for non-aggregate types must be non-zero.
Owen Anderson
2015-03-02
1
-0
/
+3
*
Teach DataLayout that pointer ABI and preferred alignments are required to be...
Owen Anderson
2015-03-02
1
-0
/
+6
*
Teach DataLayout that zero-byte pointer sizes don't make sense.
Owen Anderson
2015-03-02
1
-0
/
+2
*
DataLayout: Validate that the pref alignment is at least the ABI align
David Majnemer
2015-02-16
1
-1
/
+4
*
DataLayout: Report when the datalayout type alignment/width is too large
David Majnemer
2015-02-16
1
-6
/
+11
*
DataLayout: Report when the preferred alignment is less than the ABI
David Majnemer
2015-02-11
1
-0
/
+3
*
DataLayout: Provide nicer diagnostics for malformed strings
David Majnemer
2014-12-10
1
-2
/
+11
*
DataLayout: Be more verbose when diagnosing problems in pointer specs
David Majnemer
2014-12-10
1
-3
/
+10
*
DataLayout: Move asserts over to report_fatal_error
David Majnemer
2014-12-10
1
-7
/
+10
*
Switch the default DataLayout to be little endian, and make the variable
Chandler Carruth
2014-10-20
1
-5
/
+5
*
IR: Replace DataLayout::RoundUpAlignment with RoundUpToAlignment
David Majnemer
2014-10-20
1
-2
/
+2
*
Use cast<> instead of unchecked dyn_cast<>
Matt Arsenault
2014-09-18
1
-1
/
+1
*
Add doInitialization/doFinalization to DataLayoutPass.
Rafael Espindola
2014-09-10
1
-7
/
+11
*
Revert "Introduce a string_ostream string builder facilty"
Alp Toker
2014-06-26
1
-1
/
+2
*
Introduce a string_ostream string builder facilty
Alp Toker
2014-06-26
1
-2
/
+1
*
Use pointer size function where only a pointer is expected
Matt Arsenault
2014-04-23
1
-1
/
+1
*
Fix DataLayout::operator==().
Rafael Espindola
2014-04-22
1
-1
/
+1
*
[C++11] More 'nullptr' conversion or in some cases just using a boolean check...
Craig Topper
2014-04-09
1
-5
/
+5
*
ARM: update subtarget information for Windows on ARM
Saleem Abdulrasool
2014-04-02
1
-4
/
+3
*
[C++11] Modernize the IR library a bit.
Benjamin Kramer
2014-03-10
1
-37
/
+21
*
[Modules] Move GetElementPtrTypeIterator into the IR library. As its
Chandler Carruth
2014-03-04
1
-1
/
+1
[next]