Home
last modified time | relevance | path

Searched refs:isNormalized (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAccelTable.h311 assert(isNormalized() && "Accessing DIE Offset before normalizing.");
323 assert(!isNormalized() && "Accessing offset after normalizing.");
328 bool isNormalized() const {
339 assert(isNormalized() && "Accessing DIE Offset before normalizing.");
426 if (!Data->isNormalized())
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDARuntime.h79 bool isNormalized() const { return Normalized; } in isNormalized() function
H A DCGCUDANV.cpp731 llvm::ConstantInt::get(IntTy, Info.Flags.isNormalized()), in makeRegisterGlobalsFn()
1221 (I.Flags.isNormalized() in createOffloadingEntries()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h2317 bool isNormalized() const { return getNumOperands() % 2; } in VP_CLASSOF_IMPL()
2322 return (getNumOperands() + isNormalized()) / 2; in getNumIncomingValues()
2327 return Idx == 0 ? getOperand(0) : getOperand(Idx * 2 - isNormalized()); in getIncomingValue()
2332 assert((Idx > 0 || !isNormalized()) && "First index has no mask!"); in getMask()
2333 return Idx == 0 ? getOperand(1) : getOperand(Idx * 2 + !isNormalized()); in getMask()
H A DVPlanTransforms.cpp1270 if (Blend->isNormalized() || !match(Blend->getMask(0), m_False())) in simplifyBlends()
1282 if (Blend->isNormalized()) in simplifyBlends()
H A DVPlanRecipes.cpp2415 assert(isNormalized() && "Expected blend to be normalized!"); in execute()