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
/
Transforms
/
PipelineDataTransfer.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[mlir] NFC: Remove Value::operator* and Value::operator-> now that Value is p...
River Riddle
2020-01-11
1
-10
/
+10
*
NFC: Replace ValuePtr with Value and remove it now that Value is value-typed.
River Riddle
2019-12-23
1
-6
/
+6
*
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
-7
/
+7
*
Replace some remnant uses of "inst" with "op".
Sean Silva
2019-11-06
1
-1
/
+1
*
NFC: Remove trivial builder get methods.
River Riddle
2019-10-17
1
-4
/
+4
*
Add convenience methods to set an OpBuilder insertion point after an Operatio...
Mehdi Amini
2019-09-23
1
-3
/
+1
*
Support symbolic operands for memref replacement; fix memrefNormalize
Uday Bondhugula
2019-09-18
1
-0
/
+1
*
NFC: Finish replacing FunctionPassBase/ModulePassBase with OpPassBase.
River Riddle
2019-09-13
1
-1
/
+1
*
pipeline-data-transfer: remove dead tag alloc's and improve test coverage for...
Uday Bondhugula
2019-09-04
1
-6
/
+13
*
Refactor the 'walk' methods for operations.
River Riddle
2019-08-29
1
-2
/
+1
*
Refactor / improve replaceAllMemRefUsesWith
Uday Bondhugula
2019-08-27
1
-10
/
+11
*
NFC: Move AffineOps dialect to the Dialect sub-directory.
River Riddle
2019-08-20
1
-1
/
+1
*
NFC: Move LLVMIR, SDBM, and StandardOps to the Dialect/ directory.
River Riddle
2019-08-19
1
-1
/
+1
*
Change from llvm::make_unique to std::make_unique
Jacques Pienaar
2019-08-17
1
-1
/
+1
*
Express ownership transfer in PassManager API through std::unique_ptr (NFC)
Mehdi Amini
2019-08-12
1
-2
/
+2
*
Globally change load/store/dma_start/dma_wait operations over to affine.load/...
Andy Davis
2019-07-03
1
-13
/
+12
*
NFC: Rename FuncBuilder to OpBuilder and refactor to take a top level region ...
River Riddle
2019-06-09
1
-3
/
+3
*
Remove "size" property of affine maps.
MLIR Team
2019-06-01
1
-1
/
+1
*
Add user iterators to IRObjects, i.e. Values.
River Riddle
2019-05-20
1
-6
/
+5
*
Replace Operation::isa with llvm::isa.
River Riddle
2019-05-20
1
-6
/
+6
*
Replace Operation::cast with llvm::cast.
River Riddle
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
-2
/
+2
*
Automated rollback of changelist 247778391.
MLIR Team
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
-2
/
+2
*
Prepend an "affine-" prefix to Affine pass option names - NFC
Nicolas Vasilache
2019-05-06
1
-2
/
+2
*
Add support for basic remark diagnostics. This is the minimal functionali...
River Riddle
2019-05-06
1
-2
/
+3
*
Remove the non-postorder walk functions from Function/Block/Instruction a...
River Riddle
2019-04-05
1
-1
/
+1
*
Replace usages of Instruction with Operation in the Transforms/ directory.
River Riddle
2019-03-29
1
-38
/
+38
*
Replace usages of Instruction with Operation in the /IR directory.
River Riddle
2019-03-29
1
-6
/
+6
*
Make FunctionPass::getFunction() return a reference to the function, instead of
Chris Lattner
2019-03-29
1
-1
/
+1
*
Replace usages of "Op::operator->" with ".".
River Riddle
2019-03-29
1
-9
/
+9
*
Replace usages of "operator->" with "." for the AffineOps.
River Riddle
2019-03-29
1
-21
/
+20
*
NFC: Rename the 'for' operation in the AffineOps dialect to 'affine.for' and ...
River Riddle
2019-03-29
1
-9
/
+9
*
Remove OpPointer, cleaning up a ton of code. This also moves Ops to using
Chris Lattner
2019-03-29
1
-15
/
+14
*
Remove const from Value, Instruction, Argument, and the various methods on the
Chris Lattner
2019-03-29
1
-4
/
+4
*
Fix misc bugs / TODOs / other improvements to analysis utils
Uday Bondhugula
2019-03-29
1
-2
/
+0
*
Move UtilResult into the Support directory and rename it to Status. Status pr...
River Riddle
2019-03-29
1
-1
/
+1
*
Change Pass:getFunction() to return pointer instead of ref - NFC
Uday Bondhugula
2019-03-29
1
-1
/
+1
*
Use consistent names for dialect op source files
Lei Zhang
2019-03-29
1
-1
/
+1
*
Provide a Builder::getNamedAttr and (Instruction|Function)::setAttr(StringRef...
River Riddle
2019-03-29
1
-2
/
+1
*
Remove PassResult and have the runOnFunction/runOnModule functions return voi...
River Riddle
2019-03-29
1
-18
/
+12
*
Change some of the debug messages to use emitError / emitWarning / emitNote -...
Uday Bondhugula
2019-03-29
1
-4
/
+5
*
Port all of the existing passes over to the new pass manager infrastructure. ...
River Riddle
2019-03-29
1
-8
/
+5
*
Define a PassID class to use when defining a pass. This allows for the type u...
River Riddle
2019-03-29
1
-3
/
+1
*
NFC: Refactor the files related to passes.
River Riddle
2019-03-29
1
-1
/
+1
*
Misc. updates/fixes to analysis utils used for DMA generation; update DMA
Uday Bondhugula
2019-03-29
1
-2
/
+2
*
Generate dealloc's for alloc's of pipeline-data-transfer
Uday Bondhugula
2019-03-29
1
-2
/
+13
*
Generate dealloc's for the alloc's of dma-generate.
Uday Bondhugula
2019-03-29
1
-5
/
+16
*
Automated rollback of changelist 232717775.
Uday Bondhugula
2019-03-29
1
-9
/
+9
[next]