Home
last modified time | relevance | path

Searched refs:HasShift (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DThumb2SizeReduction.cpp323 bool HasShift = false; in ReduceLoadStore() local
364 HasShift = true; in ReduceLoadStore()
424 if (HasShift) { in ReduceLoadStore()
453 assert((!HasShift || OffsetReg) && "Invalid so_reg load / store address!"); in ReduceLoadStore()
/external/llvm/lib/Target/ARM/
DThumb2SizeReduction.cpp385 bool HasShift = false; in ReduceLoadStore() local
425 HasShift = true; in ReduceLoadStore()
531 if (HasShift) { in ReduceLoadStore()
567 assert((!HasShift || OffsetReg) && "Invalid so_reg load / store address!"); in ReduceLoadStore()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DThumb2SizeReduction.cpp411 bool HasShift = false; in ReduceLoadStore() local
451 HasShift = true; in ReduceLoadStore()
560 if (HasShift) { in ReduceLoadStore()
596 assert((!HasShift || OffsetReg) && "Invalid so_reg load / store address!"); in ReduceLoadStore()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp466 const bool HasShift = match(B, m_OneUse(m_LShr(m_Value(X), m_Value(Z)))); in foldSelectICmpAndAnd() local
467 if (!HasShift) in foldSelectICmpAndAnd()
477 Value *MaskB = HasShift ? Builder.CreateShl(One, Z) : One; in foldSelectICmpAndAnd()