Displaying 5 results from an estimated 5 matches for "qtoprange".
2011 Dec 02
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...> + while (!Q.empty()) {
> + ValuePairWithDepth QTop = Q.back();
> + PrunedTree.insert(QTop.first);
> + Q.pop_back();
> +
> + // Visit each child, pruning as necessary...
> + DenseMap<ValuePair, size_t> BestChilden;
> + VPPIteratorPair QTopRange = ConnectedPairs.equal_range(QTop.first);
> + for (std::map<ValuePair, ValuePair>::iterator K = QTopRange.first;
> + K != QTopRange.second; ++K) {
> + DenseMap<ValuePair, size_t>::iterator C = Tree.find(K->second);
> + if (C == Tree.end()) con...
2011 Dec 14
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...> + ValuePairWithDepth QTop = Q.back();
> > + PrunedTree.insert(QTop.first);
> > + Q.pop_back();
> > +
> > + // Visit each child, pruning as necessary...
> > + DenseMap<ValuePair, size_t> BestChilden;
> > + VPPIteratorPair QTopRange = ConnectedPairs.equal_range(QTop.first);
> > + for (std::map<ValuePair, ValuePair>::iterator K = QTopRange.first;
> > + K != QTopRange.second; ++K) {
> > + DenseMap<ValuePair, size_t>::iterator C = Tree.find(K->second);
> > + if (...
2011 Nov 23
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 21:22 -0600, Hal Finkel wrote:
> On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote:
> > Tobias,
> >
> > I've attached an updated patch. It contains a few bug fixes and many
> > (refactoring and coding-convention) changes inspired by your comments.
> >
> > I'm currently trying to fix the bug responsible for causing a compile
2011 Dec 02
0
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
...> + ValuePairWithDepth QTop = Q.back();
> > + PrunedTree.insert(QTop.first);
> > + Q.pop_back();
> > +
> > + // Visit each child, pruning as necessary...
> > + DenseMap<ValuePair, size_t> BestChilden;
> > + VPPIteratorPair QTopRange = ConnectedPairs.equal_range(QTop.first);
> > + for (std::map<ValuePair, ValuePair>::iterator K = QTopRange.first;
> > + K != QTopRange.second; ++K) {
> > + DenseMap<ValuePair, size_t>::iterator C = Tree.find(K->second);
> > + if (...
2011 Nov 22
5
[LLVMdev] [llvm-commits] [PATCH] BasicBlock Autovectorization Pass
On Mon, 2011-11-21 at 11:55 -0600, Hal Finkel wrote:
> Tobias,
>
> I've attached an updated patch. It contains a few bug fixes and many
> (refactoring and coding-convention) changes inspired by your comments.
>
> I'm currently trying to fix the bug responsible for causing a compile
> failure when compiling
>