Searched refs:CIdx (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp209 int CIdx = (PS1 == BB) ? 0 : 1; local
212 Idx = CIdx;
213 else if (CIdx != Idx)
/freebsd-12-stable/contrib/llvm-project/clang/include/clang-c/
H A DIndex.h1155 * \param CIdx The index object with which the translation unit will be
1180 CXIndex CIdx,
1194 CXIndex CIdx,
1206 CXIndex CIdx,
1387 clang_parseTranslationUnit(CXIndex CIdx,
1405 * \param CIdx The index object with which the translation unit will be
1440 clang_parseTranslationUnit2(CXIndex CIdx,
1455 CXIndex CIdx, const char *source_filename,
6590 * \param CIdx The index object with which the index action will be associated.
6592 CINDEX_LINKAGE CXIndexAction clang_IndexAction_create(CXIndex CIdx);
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp795 auto *CIdx = dyn_cast<ConstantInt>(Idx);
796 if (!CIdx)
800 if (CIdx->uge(Val->getType()->getVectorNumElements()))
824 return Val->getAggregateElement(CIdx);
833 ConstantInt *CIdx = dyn_cast<ConstantInt>(Idx);
834 if (!CIdx) return nullptr;
843 if (CIdx->uge(NumElts))
849 uint64_t IdxVal = CIdx->getZExtValue();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DInlineSpiller.cpp1208 SlotIndex CIdx = LIS.getInstructionIndex(*CurrentSpill); local
1209 MachineInstr *SpillToRm = (CIdx > PIdx) ? CurrentSpill : PrevSpill;
1210 MachineInstr *SpillToKeep = (CIdx > PIdx) ? PrevSpill : CurrentSpill;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp556 if (const ConstantInt *CIdx = dyn_cast<ConstantInt>(Index)) {
557 if (CIdx->isZero())
561 CIdx->getValue().sextOrSelf(MaxPointerSize))
H A DInstructionSimplify.cpp4262 if (auto *CIdx = dyn_cast<Constant>(Idx))
4263 return ConstantFoldExtractElementInstruction(CVec, CIdx);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp753 auto *CIdx = dyn_cast<ConstantSDNode>(Op.getOperand(2)); local
755 if (CIdx && CIdx->getAPIntValue().ult(VecVT.getVectorNumElements()) &&
756 !DemandedElts[CIdx->getZExtValue()])
886 auto *CIdx = dyn_cast<ConstantSDNode>(Op.getOperand(2)); local
892 if (CIdx && CIdx->getAPIntValue().ult(VecVT.getVectorNumElements())) {
893 unsigned Idx = CIdx->getZExtValue();
1862 if (auto *CIdx = dyn_cast<ConstantSDNode>(Idx))
1863 if (CIdx
2379 auto *CIdx = dyn_cast<ConstantSDNode>(Op.getOperand(2)); local
[all...]
H A DLegalizeVectorTypes.cpp1413 if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
1414 unsigned IdxVal = CIdx->getZExtValue();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp20619 unsigned CIdx = cast<ConstantSDNode>(Idx)->getZExtValue();
20620 if (M->second[CIdx])
20622 M->second.setBit(CIdx);
[all...]

Completed in 389 milliseconds