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
/
CGBuiltin.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add builtins for bitreverse intrinsic
Matt Arsenault
2016-02-03
1
-42
/
+45
*
Recommit: R258773 [OpenCL] Pipe builtin functions
Xiuli Pan
2016-01-26
1
-0
/
+136
*
Revert "[OpenCL] Pipe builtin functions"
David Majnemer
2016-01-26
1
-135
/
+0
*
[OpenCL] Pipe builtin functions
Xiuli Pan
2016-01-26
1
-0
/
+135
*
[CUDA] Make printf work.
Justin Lebar
2016-01-23
1
-0
/
+3
*
AMDGPU: Rename builtins to use amdgcn prefix
Matt Arsenault
2016-01-22
1
-25
/
+39
*
Reordering fields to reduce padding in Clang. NFC
Ben Craig
2015-12-14
1
-6
/
+6
*
Add the `pass_object_size` attribute to clang.
George Burgess IV
2015-12-02
1
-20
/
+72
*
Move checkTargetFeatures to CodeGenFunction.cpp to make it
Eric Christopher
2015-11-12
1
-42
/
+0
*
In preparation to use it in more places rename
Eric Christopher
2015-11-12
1
-11
/
+11
*
Extract out a function onto CodeGenModule for getting the map of
Eric Christopher
2015-11-11
1
-26
/
+3
*
Fix a FIXME about using std::is_sorted.
Eric Christopher
2015-11-11
1
-3
/
+4
*
Fix __builtin_signbit for ppcf128 type
Petar Jovanovic
2015-11-06
1
-3
/
+13
*
[WebAssembly] Update wasm builtin functions to match spec changes.
Dan Gohman
2015-11-05
1
-7
/
+2
*
Add support for __builtin_{add,sub,mul}_overflow.
John McCall
2015-10-29
1
-1
/
+127
*
Put global classes into the appropriate namespace.
Benjamin Kramer
2015-10-28
1
-1
/
+3
*
Reflow comment.
Eric Christopher
2015-10-28
1
-6
/
+4
*
Handle target builtin options that are all required rather than
Eric Christopher
2015-10-27
1
-4
/
+9
*
Use early exits to reduce indentation.
Eric Christopher
2015-10-27
1
-46
/
+48
*
Make a bunch of static arrays const.
Craig Topper
2015-10-18
1
-3
/
+3
*
Add an error when calling a builtin that requires features that don't
Eric Christopher
2015-10-15
1
-0
/
+67
*
[CodeGen] Remove dead code. NFC.
Benjamin Kramer
2015-10-15
1
-9
/
+0
*
[X86] Add XSAVE intrinsic family
Amjad Aboud
2015-10-13
1
-0
/
+40
*
[WebAssembly] Add a __builtin_wasm_resize_memory() intrinsic.
Dan Gohman
2015-10-02
1
-0
/
+5
*
[WebAssembly] Add a __builtin_wasm_memory_size() intrinsic.
Dan Gohman
2015-10-02
1
-0
/
+5
*
[CUDA] fix codegen for __nvvm_atom_cas_*
Jingyue Wu
2015-09-30
1
-1
/
+3
*
[ARM][NEON] Use address space in vld([1234]|[234]lane) and vst([1234]|[234]la...
Jeroen Ketema
2015-09-30
1
-10
/
+20
*
[CUDA] Allow parsing of host and device code simultaneously.
Artem Belevich
2015-09-22
1
-11
/
+25
*
Support __builtin_ms_va_list.
Charles Davis
2015-09-17
1
-13
/
+41
*
Fix vld1_lane intrinsic generation
Steven Wu
2015-09-09
1
-2
/
+1
*
Introduce __builtin_nontemporal_store and __builtin_nontemporal_load.
Michael Zolotukhin
2015-09-08
1
-0
/
+26
*
Compute and preserve alignment more faithfully in IR-generation.
John McCall
2015-09-08
1
-206
/
+131
*
[WebAssembly] Initial WebAssembly support in clang
Dan Gohman
2015-09-03
1
-0
/
+17
*
add __builtin_unpredictable and convert to metadata
Sanjay Patel
2015-09-02
1
-0
/
+6
*
[PowerPC] Support __builtin_ppc_get_timebase
Hal Finkel
2015-08-31
1
-0
/
+5
*
[CUDA] fix codegen for __nvvm_atom_min/max_gen_u*
Jingyue Wu
2015-08-31
1
-2
/
+6
*
[X86][SSE] Add _mm_undefined_* intrinsics
Simon Pilgrim
2015-08-26
1
-0
/
+4
*
[ARM NEON] Use CGF cached Types instead of llvm::Type::get. NFC.
Ahmed Bougacha
2015-08-24
1
-13
/
+11
*
[ARM NEON] Replace redundant code with a new GetFloatNeonType. NFC.
Ahmed Bougacha
2015-08-24
1
-63
/
+22
*
[ARM NEON] Use the common naming scheme for vcvt f16 builtins. NFC.
Ahmed Bougacha
2015-08-21
1
-2
/
+2
*
Rename the non-coding style conformant functions in namespace Builtins
Eric Christopher
2015-08-06
1
-2
/
+2
*
[CodeGen] Clean up CGBuiltin a bit.
Benjamin Kramer
2015-07-28
1
-272
/
+176
*
[AArch64] Implement __builtin_thread_pointer
Adhemerval Zanella
2015-07-28
1
-0
/
+5
*
[CodeGen] Don't UBSan-ize the argument to __builtin_frame_address
David Majnemer
2015-07-25
1
-4
/
+4
*
[CodeGen] Flip lanes when lowering __builtin_palignr with one lane
Benjamin Kramer
2015-07-20
1
-0
/
+1
*
Add missing builtins to altivec.h for ABI compliance (vol. 4)
Nemanja Ivanovic
2015-07-14
1
-0
/
+21
*
Rely on default zero-arg value for IRBuilder::CreateCall calls to zero-arg fu...
David Blaikie
2015-07-14
1
-7
/
+7
*
Add missing builtins to altivec.h for ABI compliance (vol. 2)
Nemanja Ivanovic
2015-07-05
1
-1
/
+70
*
Attach attribute "trap-func-name" to call sites of llvm.trap and llvm.debugtrap.
Akira Hatanaka
2015-07-02
1
-8
/
+4
*
Add support for the x86 builtin __builtin_cpu_supports.
Eric Christopher
2015-06-29
1
-0
/
+77
[next]