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
/
examples
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[BuildingAJIT] Update chapter 2 to use the ORCv2 APIs.
Lang Hames
2018-11-13
2
-133
/
+126
*
[BuildingAJIT] Update the Ch1 KaleidoscopeJIT class to expose errors to clients.
Lang Hames
2018-10-18
2
-36
/
+38
*
[BuildingAJIT] Update chapter 1 to use the ORCv2 APIs.
Lang Hames
2018-10-17
2
-125
/
+116
*
[ORC] Rename ORC layers to make the "new" ORC layers the default.
Lang Hames
2018-10-15
6
-22
/
+22
*
[ORC] Fix BuildingAJIT tutorial examples that were broken by r343059.
Lang Hames
2018-09-26
2
-4
/
+4
*
[ORC] Update JITCompileCallbackManager to support multi-threaded code.
Lang Hames
2018-05-30
4
-76
/
+76
*
Test Commit Access - Removed Whitespace
Luke Geeson
2018-05-29
1
-3
/
+3
*
Unbreak kaleidoscope example.
Peter Collingbourne
2018-05-21
1
-1
/
+1
*
[ORC] Rewrite the VSO symbol table yet again. Update related utilities.
Lang Hames
2018-05-16
6
-0
/
+6
*
s/LLVM_ON_WIN32/_WIN32/, llvm
Nico Weber
2018-04-29
7
-8
/
+8
*
Fix build breaks in examples due to moving stuff from Scalar.h to InstCombine.h
David Blaikie
2018-04-24
4
-3
/
+7
*
InstCombine: Fix layering by not including Scalar.h in InstCombine
David Blaikie
2018-04-24
4
-5
/
+9
*
[ORC] Create a new SymbolStringPool by default in ExecutionSession constructor.
Lang Hames
2018-04-02
6
-17
/
+6
*
Transforms: Introduce Transforms/Utils.h rather than spreading the declaratio...
David Blaikie
2018-03-28
1
-2
/
+3
*
[ORC] Re-apply r327566 with a fix for test-global-ctors.ll.
Lang Hames
2018-03-15
4
-12
/
+12
*
Revert "[ORC] Switch from shared_ptr to unique_ptr for addModule methods."
Reid Kleckner
2018-03-14
4
-12
/
+12
*
[ORC] Switch from shared_ptr to unique_ptr for addModule methods.
Lang Hames
2018-03-14
4
-12
/
+12
*
[ORC] Consolidate RTDyldObjectLinkingLayer GetMemMgr and GetResolver into a
Lang Hames
2018-02-14
6
-29
/
+31
*
Update examples for API change. NFC.
Rafael Espindola
2018-02-14
2
-2
/
+2
*
[ORC] Remove Layer handles from the layer concept.
Lang Hames
2018-02-09
6
-39
/
+39
*
Add OrcJIT dependency for Kaleidoscope Chapter 9.
Lang Hames
2018-02-06
1
-0
/
+1
*
[ORC] Start migrating ORC layers to use the new ORC Core.h APIs.
Lang Hames
2018-02-06
12
-155
/
+170
*
PR35705: Fix Chapter 9 example code for API changes to DIBuilder
David Blaikie
2017-12-20
2
-2
/
+4
*
[CMake] Use PRIVATE in target_link_libraries for executables
Shoaib Meenai
2017-12-05
1
-1
/
+1
*
Fix broken links to the Itanium CXX ABI
Vlad Tsyrklevich
2017-09-12
1
-8
/
+8
*
[ORC] Refactor OrcRemoteTarget code to expose its RPC API, reduce
Lang Hames
2017-09-04
2
-16
/
+4
*
[ORC] Add an Error return to the JITCompileCallbackManager::grow method.
Lang Hames
2017-09-03
2
-2
/
+2
*
[ORC][Kaleidoscope] Update Chapter 1 of BuildingAJIT to incorporate recent ORC
Lang Hames
2017-08-15
2
-7
/
+9
*
Defeat another -Wunused-but-set-variable warning
Hans Wennborg
2017-07-19
1
-0
/
+1
*
fix typos in comments and error messges; NFC
Hiroshi Inoue
2017-07-13
1
-1
/
+1
*
[ORC] Errorize the ORC APIs.
Lang Hames
2017-07-07
15
-29
/
+28
*
[Orc] Remove the memory manager argument to addModule, and de-templatize the
Lang Hames
2017-07-04
6
-13
/
+14
*
[ORC] Re-apply r306166 and r306168 with fix for regression test.
Lang Hames
2017-06-23
6
-68
/
+42
*
This reverts commit r306166 and r306168.
Rafael Espindola
2017-06-23
6
-42
/
+68
*
[ORC] Move ORC IR layer interface from addModuleSet to addModule and fix the
Lang Hames
2017-06-23
6
-68
/
+42
*
[ORC] Switch the object layer API from addObjectSet to addObject (singular), and
Lang Hames
2017-06-22
6
-12
/
+12
*
Move Object format code to lib/BinaryFormat.
Zachary Turner
2017-06-07
1
-2
/
+2
*
[Examples] Fix some Clang-tidy modernize-use-using and Include What You Use w...
Eugene Zelenko
2017-05-26
7
-44
/
+43
*
[Kaleidoscope] toy.cpp use after move fix
Peter Szecsi
2017-05-07
6
-6
/
+6
*
Module::getOrInsertFunction is using C-style vararg instead of variadic templ...
Serge Guelton
2017-04-11
5
-16
/
+10
*
llvm/examples/Kaleidoscope/BuildingAJIT: More fixup corresponding to r295636.
NAKAMURA Takumi
2017-02-20
5
-10
/
+10
*
llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h: Fixup corresponding to ...
NAKAMURA Takumi
2017-02-20
1
-2
/
+2
*
Kaleidoscope-Ch7: Add TranformUtils for llvm::createPromoteMemoryToRegisterPa...
NAKAMURA Takumi
2017-02-12
1
-0
/
+1
*
Update Kaleidoscope tutorial and improve Windows support
Mehdi Amini
2017-02-11
8
-27
/
+90
*
[CMake] Fix pthread handling for out-of-tree builds
Eric Fiselier
2017-02-10
1
-1
/
+1
*
Use print() instead of dump() in code
Matthias Braun
2017-01-28
17
-36
/
+67
*
Chapter3/KaleidoscopeJIT.h: Fix a warning. [-Wunused-lambda-capture]
NAKAMURA Takumi
2017-01-26
1
-1
/
+1
*
BrainF example: fixing output buffering issue
Boris Ulasevich
2017-01-17
1
-0
/
+4
*
BrainF example: fixing segfault caused by outdated code with missing MCJIT de...
Boris Ulasevich
2016-12-15
2
-0
/
+7
*
Prune unused libdeps.
NAKAMURA Takumi
2016-12-08
1
-1
/
+0
[prev]
[next]