Searched refs:BaseIdx (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | PseudoLoweringEmitter.cpp | 57 unsigned BaseIdx); 74 IndexedMap<OpData> &OperandMap, unsigned BaseIdx) { in addDagOperandMapping() argument 82 OperandMap[BaseIdx + i].Kind = OpData::Reg; in addDagOperandMapping() 83 OperandMap[BaseIdx + i].Data.Reg = DI->getDef(); in addDagOperandMapping() 93 if (DI->getDef() != Insn.Operands[BaseIdx + i].Rec) { in addDagOperandMapping() 105 OperandMap[BaseIdx + i + I].Kind = OpData::Operand; in addDagOperandMapping() 108 OperandMap[BaseIdx + i].Kind = OpData::Imm; in addDagOperandMapping() 109 OperandMap[BaseIdx + i].Data.Imm = II->getValue(); in addDagOperandMapping() 114 OperandMap[BaseIdx + i].Kind = OpData::Imm; in addDagOperandMapping() 115 OperandMap[BaseIdx + i].Data.Imm = II->getValue(); in addDagOperandMapping() [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/fuzzer/dataflow/ |
| H A D | DataFlow.cpp | 188 size_t BaseIdx = Iter * kNumLabels; in main() local 189 size_t LastIdx = BaseIdx + kNumLabels < NumBytesRead ? BaseIdx + kNumLabels in main() 191 assert(BaseIdx < LastIdx); in main() 192 for (size_t Idx = BaseIdx; Idx < LastIdx; Idx++) in main() 193 dfsan_set_label(1 << (Idx - BaseIdx), Buf + Idx, 1); in main()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | Store.cpp | 489 SVal BaseIdx = ElemR->getIndex(); in getLValueElement() local 491 if (!isa<nonloc::ConcreteInt>(BaseIdx)) in getLValueElement() 495 BaseIdx.castAs<nonloc::ConcreteInt>().getValue(); in getLValueElement()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | StackMaps.cpp | 434 unsigned BaseIdx = GCPtrIndices[P.first]; in parseStatepointOpers() local 436 LLVM_DEBUG(dbgs() << "Base : " << BaseIdx << " Derived : " << DerivedIdx in parseStatepointOpers() 438 (void)parseOperand(MOB + BaseIdx, MOE, Locations, LiveOuts); in parseStatepointOpers()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeIntegerTypes.cpp | 5180 SDValue BaseIdx = N->getOperand(1); in PromoteIntRes_EXTRACT_SUBVECTOR() local 5194 uint64_t IdxVal = cast<ConstantSDNode>(BaseIdx)->getZExtValue(); in PromoteIntRes_EXTRACT_SUBVECTOR() 5198 BaseIdx.getValueType())); in PromoteIntRes_EXTRACT_SUBVECTOR() 5201 DAG.getConstant(IdxVal % NElts, dl, BaseIdx.getValueType())); in PromoteIntRes_EXTRACT_SUBVECTOR() 5207 SDValue Ops[] = {GetWidenedVector(InOp0), BaseIdx}; in PromoteIntRes_EXTRACT_SUBVECTOR() 5216 SDValue Ops[] = { GetPromotedInteger(InOp0), BaseIdx }; in PromoteIntRes_EXTRACT_SUBVECTOR() 5243 SDValue Index = DAG.getNode(ISD::ADD, dl, BaseIdx.getValueType(), in PromoteIntRes_EXTRACT_SUBVECTOR() 5244 BaseIdx, DAG.getConstant(i, dl, BaseIdx.getValueType())); in PromoteIntRes_EXTRACT_SUBVECTOR()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | RewriteStatepointsForGC.cpp | 1509 Value *BaseIdx = Builder.getInt32(FindIndex(LiveVariables, BasePtrs[i])); in CreateGCRelocates() local 1519 GCRelocateDecl, {StatepointToken, BaseIdx, LiveIdx}, in CreateGCRelocates()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | SIRegisterInfo.cpp | 540 unsigned BaseIdx = alignDown(ST.getMaxNumSGPRs(MF), 4) - 4; in reservedPrivateSegmentBufferReg() local 541 MCRegister BaseReg(AMDGPU::SGPR_32RegClass.getRegister(BaseIdx)); in reservedPrivateSegmentBufferReg()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 7420 EltSrcBits[BaseIdx + i] = EltSubBits[i]; in getTargetConstantBitsFromNode() 7439 if ((BaseIdx + NumSubElts) != NumSrcElts) in getTargetConstantBitsFromNode() 7441 if (BaseIdx != 0) in getTargetConstantBitsFromNode() 8556 int BaseIdx = i * NumBytesPerElt; in getFauxShuffleMask() local 9280 return (0 <= BaseIdx && BaseIdx < (int)NumElems && LoadMask[BaseIdx] && in EltsFromConsecutiveLoads() 9281 Loads[BaseIdx] == Ld && ByteOffsets[BaseIdx] == 0); in EltsFromConsecutiveLoads() 10039 unsigned ExpectedVExtractIdx = BaseIdx; in isHorizontalBinOpPart() 10040 unsigned NumElts = LastIdx - BaseIdx; in isHorizontalBinOpPart() 10046 SDValue Op = N->getOperand(i + BaseIdx); in isHorizontalBinOpPart() 10052 ExpectedVExtractIdx = BaseIdx; in isHorizontalBinOpPart() [all …]
|