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
/
unittests
/
ExecutionEngine
/
Orc
/
CoreAPIsTest.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[ORC][JITLink] Add support for weak references, and improve handling of static
Lang Hames
2019-11-28
1
-87
/
+111
*
[Orc] Address the remaining move-capture FIXMEs
Benjamin Kramer
2019-09-13
1
-2
/
+1
*
[ORC] Make sure that queries on emitted-but-not-ready symbols fail correctly.
Lang Hames
2019-08-26
1
-0
/
+54
*
[ORC] Fix an overly aggressive assert.
Lang Hames
2019-08-26
1
-0
/
+29
*
[ORC] Remove query dependencies when symbols are resolved.
Lang Hames
2019-08-23
1
-1
/
+25
*
[ORC] Fix a FIXME: Propagate errors to dependencies.
Lang Hames
2019-08-23
1
-49
/
+251
*
[ORC] Re-introduce self-dependence accidentally dropped from a unit test.
Lang Hames
2019-08-16
1
-0
/
+1
*
[llvm] Migrate llvm::make_unique to std::make_unique
Jonas Devlieghere
2019-08-15
1
-26
/
+26
*
[ORC] Refactor definition-generation, add a generator for static libraries.
Lang Hames
2019-08-13
1
-8
/
+28
*
[ORC] Remove some old debugging output from a unit test.
Lang Hames
2019-08-03
1
-2
/
+0
*
[ORC] Rename MaterializationResponsibility resolve and emit methods to
Lang Hames
2019-06-13
1
-34
/
+34
*
[ORC] Update symbol lookup to use a single callback with a required symbol state
Lang Hames
2019-06-07
1
-119
/
+80
*
[ORC] Fix an ambiguous call in a unit test.
Lang Hames
2019-04-30
1
-1
/
+2
*
[ORC] Allow JITDylib definition generators to return Errors.
Lang Hames
2019-04-30
1
-3
/
+23
*
[ORC] Remove symbols from dependency lists when failing materialization.
Lang Hames
2019-04-25
1
-0
/
+36
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[ORC] Re-apply r345077 with fixes to remove ambiguity in lookup calls.
Lang Hames
2018-10-23
1
-30
/
+42
*
Revert r345077 "[ORC] Change how non-exported symbols are matched during look...
Reid Kleckner
2018-10-23
1
-32
/
+29
*
[ORC] Change how non-exported symbols are matched during lookup.
Lang Hames
2018-10-23
1
-29
/
+32
*
[ORC] Simplify naming for JITDylib definition generators.
Lang Hames
2018-10-15
1
-11
/
+8
*
[ORC] During lookup, do not match against hidden symbols in other JITDylibs.
Lang Hames
2018-10-13
1
-26
/
+34
*
[ORC] Consume unhandled errors in unit test.
Lang Hames
2018-10-07
1
-0
/
+2
*
[ORC] Add a 'remove' method to JITDylib to remove symbols.
Lang Hames
2018-10-06
1
-0
/
+86
*
[ORC] Add a "lazy call-through" utility based on the same underlying trampoline
Lang Hames
2018-09-26
1
-38
/
+0
*
[ORC] Add a special 'main' JITDylib that is created on ExecutionSession
Lang Hames
2018-09-12
1
-0
/
+10
*
[ORC] Tidy up JITSymbolFlags to remove the need for some explicit static_casts.
Lang Hames
2018-09-02
1
-2
/
+1
*
[ORC] Replace lookupFlags in JITSymbolResolver with getResponsibilitySet.
Lang Hames
2018-08-28
1
-0
/
+51
*
[ORC] Rename 'finalize' to 'emit' to avoid potential confusion.
Lang Hames
2018-08-18
1
-18
/
+18
*
[ORC] Rename VSO to JITDylib.
Lang Hames
2018-08-17
1
-91
/
+93
*
[ORC] Add a re-exports fallback definition generator.
Lang Hames
2018-08-02
1
-0
/
+22
*
[ORC] Re-apply r336760 with fixes.
Lang Hames
2018-07-21
1
-6
/
+48
*
Re-apply r337595 with fix for LLVM_ENABLE_THREADS=Off.
Lang Hames
2018-07-20
1
-149
/
+110
*
Revert r337595 "[ORC] Add new symbol lookup methods to ExecutionSessionBase i...
Reid Kleckner
2018-07-20
1
-110
/
+149
*
[ORC] Add new symbol lookup methods to ExecutionSessionBase in preparation for
Lang Hames
2018-07-20
1
-149
/
+110
*
[ORC] Simplify VSO::lookupFlags to return the flags map.
Lang Hames
2018-07-20
1
-4
/
+1
*
[ORC] Replace SymbolResolvers in the new ORC layers with search orders on VSOs.
Lang Hames
2018-07-20
1
-99
/
+2
*
Revert r336760: "[ORC] Add unit tests for the reexports utility that were..."
Lang Hames
2018-07-11
1
-42
/
+0
*
[ORC] Remove a shadowing definition.
Lang Hames
2018-07-11
1
-2
/
+0
*
[ORC] Add unit tests for the reexports utility that were left out of r336741,
Lang Hames
2018-07-11
1
-0
/
+42
*
[ORC] Drop constexpr in unit test to appease a bot.
Lang Hames
2018-07-11
1
-4
/
+4
*
[ORC] Use a gtest fixture to remove a bunch of boilerplate in CoreAPIsTest.cpp.
Lang Hames
2018-07-11
1
-299
/
+144
*
[ORC] Generalize alias materialization to support re-exports (i.e. aliasing of
Lang Hames
2018-07-10
1
-1
/
+26
*
[ORC] Rename MaterializationResponsibility::delegate to replace and add a new
Lang Hames
2018-07-09
1
-2
/
+36
*
[ORC] Add a symbolAliases function to the Core APIs.
Lang Hames
2018-06-26
1
-0
/
+29
*
[ORC] Only notify queries that they are resolved/ready when the query state
Lang Hames
2018-06-17
1
-0
/
+54
*
[ORC] Erase empty dependence sets when adding new symbol dependencies.
Lang Hames
2018-06-17
1
-0
/
+38
*
[ORC] Strip weak flags from a symbol once it is selected for materialization.
Lang Hames
2018-06-14
1
-0
/
+47
*
[ORC] Filter out self-dependencies in VSO::addDependencies.
Lang Hames
2018-06-14
1
-0
/
+7
*
[ORC] Add a fallback definition generator for VSOs.
Lang Hames
2018-06-12
1
-0
/
+27
*
[ORC] Add a getRequestedSymbols method to MaterializationResponsibility.
Lang Hames
2018-05-31
1
-0
/
+56
[next]