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
/
Basic
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use StringRef instead of calling c_str and doing pointer math before eventual...
Craig Topper
2015-10-21
1
-2
/
+2
*
Fix __ARM_FP value for sp-only FPUs with Half-precision
Richard Barton
2015-10-21
1
-1
/
+1
*
Use range-based for loops. NFC.
Craig Topper
2015-10-21
1
-24
/
+18
*
Use std::find instead of a manual loop.
Craig Topper
2015-10-21
1
-4
/
+2
*
Parse into an unsigned type instead of a signed type and then checking for po...
Craig Topper
2015-10-21
1
-5
/
+4
*
Fix bad indentation.
Craig Topper
2015-10-21
1
-1
/
+1
*
Use ArrayRef and MutableArrayRef instead of a pointer and size. NFC
Craig Topper
2015-10-21
1
-8
/
+7
*
Roll-back r250822.
Angel Garcia Gomez
2015-10-20
6
-13
/
+13
*
Apply modernize-use-default to clang.
Angel Garcia Gomez
2015-10-20
6
-13
/
+13
*
[X86] Remove a few 'else' after 'return'
Craig Topper
2015-10-20
1
-7
/
+6
*
Make getTargetBuiltins return an ArrayRef instead of having two out parameter...
Craig Topper
2015-10-19
2
-78
/
+52
*
Recommit "Return an ArrayRef instead of having two out parameters of a pointe...
Craig Topper
2015-10-19
2
-209
/
+108
*
Revert r250676 "Return an ArrayRef instead of having two out parameters of a ...
Craig Topper
2015-10-19
2
-108
/
+209
*
Return an ArrayRef instead of having two out parameters of a pointer and leng...
Craig Topper
2015-10-19
2
-209
/
+108
*
Make a bunch of static arrays const.
Craig Topper
2015-10-18
1
-3
/
+3
*
Add an unnecessary makeArrayRef I add earlier. I didn't realize range-based f...
Craig Topper
2015-10-18
1
-1
/
+1
*
Use std::is_sorted instead of a manual loop.
Craig Topper
2015-10-18
1
-5
/
+4
*
Replace a static compare function with a lambda. NFC
Craig Topper
2015-10-17
1
-7
/
+5
*
Use a range-based for loop. Use std::end instead of pointer+array_lengthof. NFC
Craig Topper
2015-10-17
1
-11
/
+9
*
Further increase helfulness of assert message
Richard Barton
2015-10-16
1
-4
/
+1
*
[X86] Add fxsr feature name for fxsave/fxrestore builtins.
Craig Topper
2015-10-16
1
-0
/
+18
*
Add support for CloudABI/aarch64.
Ed Schouten
2015-10-15
1
-0
/
+2
*
[X86] Add command line switches for xsave/xsaveopt/xsavec/xsaves. Macro defin...
Craig Topper
2015-10-15
1
-1
/
+48
*
[X86] Use C+11 non-static data member initialization to initialize all the X8...
Craig Topper
2015-10-14
1
-34
/
+30
*
[VFS] Let the user decide if they want path normalization.
Benjamin Kramer
2015-10-12
1
-16
/
+30
*
[VFS] Don't try to be heroic with '.' in paths.
Benjamin Kramer
2015-10-12
1
-8
/
+11
*
[VFS] remove handling of '..' for now.
Benjamin Kramer
2015-10-12
1
-2
/
+2
*
Fix whitespace, 80-column violations, embedded tabs for the
Eric Christopher
2015-10-09
2
-25
/
+28
*
constify the feature vector going into initFeatureMap as it shouldn't
Eric Christopher
2015-10-09
2
-27
/
+33
*
[VFS] Rename RedirectingFS internals to avoid collisions with public clang cl...
Benjamin Kramer
2015-10-09
1
-24
/
+29
*
[VFS] Just normalize away .. and . in paths for in-memory file systems.
Benjamin Kramer
2015-10-09
1
-17
/
+10
*
Use Triple.isAndroid() where possible.
Evgeniy Stepanov
2015-10-08
1
-1
/
+1
*
Handle sse turning on mmx, but no -mmx not turning off SSE.
Eric Christopher
2015-10-08
1
-11
/
+8
*
Migrate most feature map inclusion to initFeatureMap for the x86 target so
Eric Christopher
2015-10-08
1
-17
/
+21
*
Simplify DefaultCPU in ARMTargetInfo
Renato Golin
2015-10-08
1
-19
/
+11
*
[VFS] Port driver tool chains to VFS.
Benjamin Kramer
2015-10-07
1
-0
/
+5
*
[VFS] Refactor VFSFromYAML a bit.
Benjamin Kramer
2015-10-07
1
-60
/
+57
*
[VFS] Also drop '.' when adding files to an in-memory FS.
Benjamin Kramer
2015-10-07
1
-0
/
+7
*
[VFS] Put the incoming name in the file status to make InMemoryFS behave more...
Benjamin Kramer
2015-10-06
1
-1
/
+1
*
[VFS] Transition clang-format to use an in-memory FS.
Benjamin Kramer
2015-10-06
1
-0
/
+16
*
Remove duplicated default arguments. NFC.
Benjamin Kramer
2015-10-05
1
-10
/
+8
*
[VFS] Fix the windows build by including the right headers.
Benjamin Kramer
2015-10-05
1
-0
/
+8
*
[VFS] Fix compilation on systems where time_t is not int64_t.
Benjamin Kramer
2015-10-05
1
-4
/
+4
*
[VFS] Add working directories to every virtual file system.
Benjamin Kramer
2015-10-05
1
-8
/
+65
*
[VFS] Add an in-memory file system implementation.
Benjamin Kramer
2015-10-05
1
-0
/
+246
*
[VFS] Move class out of method so it looks less like Java.
Benjamin Kramer
2015-10-05
1
-26
/
+28
*
[VFS] Remove setName from the file interface.
Benjamin Kramer
2015-10-05
1
-36
/
+62
*
The Driver does not set the +strict-align flag when targeting
Alexandros Lamprineas
2015-10-05
1
-4
/
+0
*
[mips][p5600] Add -mcpu=p5600 option.
Daniel Sanders
2015-10-05
1
-0
/
+1
*
Add -f[no-]declspec to control recognition of __declspec as a keyword
Saleem Abdulrasool
2015-10-04
1
-4
/
+1
[next]