Home
last modified time | relevance | path

Searched refs:BaseIdx (Results 1 – 8 of 8) sorted by relevance

/openbsd/src/gnu/llvm/llvm/utils/TableGen/
DPseudoLoweringEmitter.cpp57 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()
91 assert(BaseIdx == 0 && "Named subargument in pseudo expansion?!"); in addDagOperandMapping()
93 if (DI->getDef() != Insn.Operands[BaseIdx + i].Rec) { in addDagOperandMapping()
97 Insn.Operands[BaseIdx + i].Rec->getName() + "'"); 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()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/fuzzer/dataflow/
DDataFlow.cpp188 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()
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
DStore.cpp490 SVal BaseIdx = ElemR->getIndex(); in getLValueElement() local
492 if (!isa<nonloc::ConcreteInt>(BaseIdx)) in getLValueElement()
496 BaseIdx.castAs<nonloc::ConcreteInt>().getValue(); in getLValueElement()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DStackMaps.cpp451 unsigned BaseIdx = GCPtrIndices[P.first]; in parseStatepointOpers() local
453 LLVM_DEBUG(dbgs() << "Base : " << BaseIdx << " Derived : " << DerivedIdx in parseStatepointOpers()
455 (void)parseOperand(MOB + BaseIdx, MOE, Locations, LiveOuts); in parseStatepointOpers()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp5304 SDValue BaseIdx = N->getOperand(1); in PromoteIntRes_EXTRACT_SUBVECTOR() local
5318 uint64_t IdxVal = cast<ConstantSDNode>(BaseIdx)->getZExtValue(); in PromoteIntRes_EXTRACT_SUBVECTOR()
5322 BaseIdx.getValueType())); in PromoteIntRes_EXTRACT_SUBVECTOR()
5325 DAG.getConstant(IdxVal % NElts, dl, BaseIdx.getValueType())); in PromoteIntRes_EXTRACT_SUBVECTOR()
5331 SDValue Ops[] = {GetWidenedVector(InOp0), BaseIdx}; in PromoteIntRes_EXTRACT_SUBVECTOR()
5340 SDValue Ops[] = { GetPromotedInteger(InOp0), BaseIdx }; in PromoteIntRes_EXTRACT_SUBVECTOR()
5367 SDValue Index = DAG.getNode(ISD::ADD, dl, BaseIdx.getValueType(), in PromoteIntRes_EXTRACT_SUBVECTOR()
5368 BaseIdx, DAG.getConstant(i, dl, BaseIdx.getValueType())); in PromoteIntRes_EXTRACT_SUBVECTOR()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp1563 Value *BaseIdx = Builder.getInt32(FindIndex(LiveVariables, BasePtrs[i])); in CreateGCRelocates() local
1573 GCRelocateDecl, {StatepointToken, BaseIdx, LiveIdx}, in CreateGCRelocates()
/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/
DSIRegisterInfo.cpp540 unsigned BaseIdx = alignDown(ST.getMaxNumSGPRs(MF), 4) - 4; in reservedPrivateSegmentBufferReg() local
541 MCRegister BaseReg(AMDGPU::SGPR_32RegClass.getRegister(BaseIdx)); in reservedPrivateSegmentBufferReg()
/openbsd/src/gnu/llvm/llvm/lib/Target/X86/
DX86ISelLowering.cpp7510 unsigned BaseIdx = Op.getConstantOperandVal(2); in getTargetConstantBitsFromNode() local
7511 UndefSrcElts.insertBits(UndefSubElts, BaseIdx); in getTargetConstantBitsFromNode()
7513 EltSrcBits[BaseIdx + i] = EltSubBits[i]; in getTargetConstantBitsFromNode()
7530 unsigned BaseIdx = Op.getConstantOperandVal(1); in getTargetConstantBitsFromNode() local
7531 UndefElts = UndefElts.extractBits(NumSubElts, BaseIdx); in getTargetConstantBitsFromNode()
7532 if ((BaseIdx + NumSubElts) != NumSrcElts) in getTargetConstantBitsFromNode()
7533 EltBits.erase(EltBits.begin() + BaseIdx + NumSubElts, EltBits.end()); in getTargetConstantBitsFromNode()
7534 if (BaseIdx != 0) in getTargetConstantBitsFromNode()
7535 EltBits.erase(EltBits.begin(), EltBits.begin() + BaseIdx); in getTargetConstantBitsFromNode()
8659 int BaseIdx = i * NumBytesPerElt; in getFauxShuffleMask() local
[all …]