search for: none_of

Displaying 8 results from an estimated 8 matches for "none_of".

2016 Nov 20
3
uninitialized values in Attributes.cpp
...te> *, __gnu_cxx::__ops::_Iter_pred<(lambda at ../lib/IR/Attributes.cpp:627:3)> > (stl_algo.h:161) ==29299== by 0x13FCF12: find_if<const std::pair<unsigned int, llvm::Attribute> *, (lambda at ../lib/IR/Attributes.cpp:627:3)> (stl_algo.h:3815) ==29299== by 0x13FCF12: none_of<const std::pair<unsigned int, llvm::Attribute> *, (lambda at ../lib/IR/Attributes.cpp:627:3)> (stl_algo.h:526) ==29299== by 0x13FCF12: none_of<llvm::ArrayRef<std::pair<unsigned int, llvm::Attribute> > &, (lambda at ../lib/IR/Attributes.cpp:627:3)> (STLExtras...
2016 Nov 20
3
uninitialized values in Attributes.cpp
...(lambda at >> ../lib/IR/Attributes.cpp:627:3)> > (stl_algo.h:161) >> ==29299== by 0x13FCF12: find_if<const std::pair<unsigned int, >> llvm::Attribute> *, (lambda at ../lib/IR/Attributes.cpp:627:3)> >> (stl_algo.h:3815) >> ==29299== by 0x13FCF12: none_of<const std::pair<unsigned int, >> llvm::Attribute> *, (lambda at ../lib/IR/Attributes.cpp:627:3)> >> (stl_algo.h:526) >> ==29299== by 0x13FCF12: none_of<llvm::ArrayRef<std::pair<unsigned int, >> llvm::Attribute> > &, (lambda at ../lib/IR/Attr...
2019 Nov 20
4
Tablegen PAT limitation?
...&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TypeSetByHwMode &amp;Big) { Small-&gt;dump(); //{ *:[i16] } Big-&gt;dump(); //&nbsp;{ *:[v1i32] } .... &nbsp; &nbsp; if (none_of(S, isVector) || none_of(B, isVector)) { &nbsp; &nbsp; &nbsp; Changed |= berase_if(S, isVector) | &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;berase_if(B, isVector); &nbsp; &nbsp; } Changed turn to True here which trigger the...
2019 Nov 21
2
Tablegen PAT limitation?
...amp;nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TypeSetByHwMode &amp;Big) { Small-&gt;dump(); //{ *:[i16] } Big-&gt;dump(); // { *:[v1i32] } .... &nbsp; &nbsp; if (none_of(S, isVector) || none_of(B, isVector)) { &nbsp; &nbsp; &nbsp; Changed |= berase_if(S, isVector) | &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;berase_if(B, isVector); &nbsp; &nbsp; } Changed turn to True h...
2019 Nov 22
2
Tablegen PAT limitation?
...amp;nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TypeSetByHwMode &amp;Big) { Small-&gt;dump(); //{ *:[i16] } Big-&gt;dump(); // { *:[v1i32] } .... &nbsp; &nbsp; if (none_of(S, isVector) || none_of(B, isVector)) { &nbsp; &nbsp; &nbsp; Changed |= berase_if(S, isVector) | &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;berase_if(B, isVector); &nbsp; &nbsp; } Changed turn to True h...
2019 Nov 25
2
Tablegen PAT limitation?
...amp;nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TypeSetByHwMode &amp;Big) { Small-&gt;dump(); //{ *:[i16] } Big-&gt;dump(); // { *:[v1i32] } .... &nbsp; &nbsp; if (none_of(S, isVector) || none_of(B, isVector)) { &nbsp; &nbsp; &nbsp; Changed |= berase_if(S, isVector) | &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;berase_if(B, isVector); &nbsp; &nbsp; } Changed turn to True h...
2009 Dec 03
0
[LLVMdev] patch for portability
...introducing several new generic free functions in several existing headers: <iterator> next prev begin end <utility> move forward <memory> addressof undeclare_reachable <functional> ref cref bind <algorithm> all_of any_of none_of move copy_if <numeric> iota (this is not a complete list). Additionally when /any/ two libraries are mixed (e.g. llvm and boost), there is a large potential for name clashes even when namespaces are judiciously used. The carefully crafted C++ library should be aware of ADL issues...
2009 Dec 03
3
[LLVMdev] patch for portability
Sorry, always end up not replying to the list: The main issue with dealing with next this way is that people adding new uses of next will probably not be using c++0x and therefore won't know it's ambiguous and that it needs to be qualified. There are also two issues with rvalue references and the STL: 1. EquivalenceClasses, in the insert and findLeader functions, it uses map functions