OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_Power2
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp
467
if (match(Op1, m_Shl(
m_Power2
(CI), m_Value(N)))) {
480
if (match(Op1, m_Select(m_Value(Cond),
m_Power2
(C1),
m_Power2
(C2)))) {
544
if (match(Op1, m_Shl(
m_Power2
(), m_Value()))) {
625
if (match(Op1,
m_Power2
(C)))
631
if (match(Op1, m_Shl(
m_Power2
(), m_Value()))) {
641
if (match(Op1, m_Select(m_Value(Cond),
m_Power2
(C1),
m_Power2
(C2)))) {
InstCombineShifts.cpp
43
if (Op1->hasOneUse() && match(Op1, m_SRem(m_Value(A),
m_Power2
(B)))) {
InstCombineCompares.cpp
[
all
...]
/external/llvm/include/llvm/Support/
PatternMatch.h
205
///
m_Power2
() - Match an integer or vector power of 2.
206
inline cst_pred_ty<is_power2>
m_Power2
() { return cst_pred_ty<is_power2>(); }
207
inline api_pred_ty<is_power2>
m_Power2
(const APInt *&V) { return V; }
Completed in 51 milliseconds