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
/
mlir
/
lib
/
Target
/
LLVMIR
/
ModuleTranslation.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[mlir] Fix translation of splat constants to LLVM IR
Alex Zinenko
2020-01-14
1
-1
/
+8
*
[mlir] NFC: Remove Value::operator* and Value::operator-> now that Value is p...
River Riddle
2020-01-11
1
-2
/
+2
*
[mlir] Fix -Wrange-loo-analysis warnings
Fangrui Song
2020-01-01
1
-1
/
+1
*
NFC: Replace ValuePtr with Value and remove it now that Value is value-typed.
River Riddle
2019-12-23
1
-4
/
+4
*
Adjust License.txt file to use the LLVM license
Mehdi Amini
2019-12-23
1
-13
/
+4
*
NFC: Introduce new ValuePtr/ValueRef typedefs to simplify the transition to V...
River Riddle
2019-12-22
1
-5
/
+5
*
Detemplatize ModuleTranslation::lookupValues
Alex Zinenko
2019-12-19
1
-0
/
+10
*
NFC: Cleanup non-conforming usages of namespaces.
River Riddle
2019-12-18
1
-23
/
+20
*
NFC: Remove unnecessary 'llvm::' prefix from uses of llvm symbols declared in...
River Riddle
2019-12-18
1
-1
/
+1
*
Move function template definition to the header file. NFC
Alex Zinenko
2019-12-18
1
-11
/
+0
*
Remove LLVM dependency on mlir::Module and instead check Traits.
Tres Popp
2019-12-16
1
-8
/
+9
*
Introduce Linkage attribute to the LLVM dialect
Alex Zinenko
2019-12-02
1
-3
/
+36
*
Add support for nested symbol references.
River Riddle
2019-11-11
1
-2
/
+2
*
[llvm] Allow GlobalOp to take a region for complex initializers
James Molloy
2019-11-05
1
-11
/
+23
*
Translation to LLVM: check the validity of module-level Ops
Alex Zinenko
2019-10-10
1
-0
/
+8
*
Use llvm.func to define functions with wrapped LLVM IR function type
Alex Zinenko
2019-10-10
1
-47
/
+8
*
Make GlobalOp's value attribute optional.
Christian Sigg
2019-09-21
1
-2
/
+4
*
Add address space attribute to LLVMIR's GlobalOp.
MLIR Team
2019-09-19
1
-3
/
+6
*
Add support for array-typed constants.
MLIR Team
2019-09-04
1
-9
/
+21
*
LLVM dialect: prefix auxiliary operations with "mlir."
Alex Zinenko
2019-09-03
1
-1
/
+2
*
Add iterator support to ElementsAttr and SparseElementsAttr.
River Riddle
2019-08-22
1
-2
/
+2
*
Automated rollback of commit b9dc2e481818315f2f0d87455349f497f6118a4c
River Riddle
2019-08-21
1
-2
/
+2
*
Add iterator support to ElementsAttr and SparseElementsAttr.
River Riddle
2019-08-21
1
-2
/
+2
*
NFC: Move LLVMIR, SDBM, and StandardOps to the Dialect/ directory.
River Riddle
2019-08-19
1
-2
/
+2
*
Use unreachable post switch rather than default case.
Jacques Pienaar
2019-08-12
1
-4
/
+2
*
LLVM dialect: introduce llvm.addressof to access globals
Alex Zinenko
2019-08-12
1
-9
/
+23
*
Translation to LLVM IR: use LogicalResult instead of bool
Alex Zinenko
2019-08-09
1
-30
/
+26
*
LLVM dialect and translation: support global strings
Alex Zinenko
2019-08-09
1
-0
/
+11
*
Translation to LLVM: support llvm.global
Alex Zinenko
2019-08-09
1
-0
/
+10
*
Add support for floating-point comparison 'fcmp' to the LLVM dialect.
Nagy Mostafa
2019-08-08
1
-0
/
+39
*
Decouple LLVM dialect from Standard dialect
Alex Zinenko
2019-07-16
1
-12
/
+11
*
Rename FunctionAttr to SymbolRefAttr.
River Riddle
2019-07-12
1
-2
/
+2
*
NFC: Rename Module to ModuleOp.
River Riddle
2019-07-10
1
-1
/
+1
*
NFC: Rename Function to FuncOp.
River Riddle
2019-07-10
1
-5
/
+5
*
NFC: Remove `Module::getFunctions` in favor of a general `getOps<T>`.
River Riddle
2019-07-08
1
-2
/
+2
*
NFC: Refactor Module to be value typed.
River Riddle
2019-07-02
1
-4
/
+4
*
NFC: Refactor Function to be value typed.
River Riddle
2019-07-01
1
-2
/
+2
*
Add a new AttributeElementIterator to DenseElementsAttr.
River Riddle
2019-06-26
1
-3
/
+1
*
Move the emitError/Warning/Remark utility methods out of MLIRContext and into...
River Riddle
2019-06-25
1
-12
/
+7
*
Simplify usages of SplatElementsAttr now that it inherits from DenseElementsA...
River Riddle
2019-06-19
1
-8
/
+1
*
Refactor DenseElementsAttr to support auto-splatting the dense data on constr...
River Riddle
2019-06-19
1
-0
/
+7
*
Add support for llvm.constant with StringAttr as value.
Stephan Herhut
2019-06-01
1
-0
/
+5
*
Refactor FunctionAttr to hold the internal function reference by name ins...
River Riddle
2019-06-01
1
-3
/
+2
*
Add support for streaming an OperationName into a Diagnostic.
River Riddle
2019-05-20
1
-2
/
+1
*
Remove unnecessary C++ specifier in CPP files. NFC.
Jacques Pienaar
2019-05-20
1
-1
/
+1
*
Add a utility method to MLIRContext get a registered dialect with the der...
River Riddle
2019-05-20
1
-3
/
+2
*
Replace Operation::isa with llvm::isa.
River Riddle
2019-05-20
1
-2
/
+2
*
Add support for using llvm::dyn_cast/cast/isa for operation casts and rep...
River Riddle
2019-05-20
1
-3
/
+3
*
Automated rollback of changelist 247778391.
MLIR Team
2019-05-20
1
-3
/
+3
*
Add support for using llvm::dyn_cast/cast/isa for operation casts and rep...
River Riddle
2019-05-20
1
-3
/
+3
[next]