Home
last modified time | relevance | path

Searched refs:Index1 (Results 1 – 10 of 10) sorted by relevance

/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslmain.c205 int Index1; in main() local
234 Index1 = Index2 = in main()
246 while (argv[Index1]) in main()
248 Status = AcpiDmAddToExternalFileList (argv[Index1]); in main()
254 Index1++; in main()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TileConfig.cpp113 unsigned Index1 = (PhysReg - X86::TMM0_TMM1) * 2 + 1; in collectVirtRegShapes() local
123 if (!Phys2Shapes[Index1].isValid()) { in collectVirtRegShapes()
125 Phys2Shapes[Index1] = std::move(Shape1); in collectVirtRegShapes()
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp230 unsigned Index1 = MakeIndex(String1); in MakeIndex() local
231 assert(Index0 + 1 == Index1 && "Unexpected non-consecutive indices!"); in MakeIndex()
232 (void) Index1; in MakeIndex()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILOpLowering.cpp470 Value *Index1 = UndefValue::get(Int32Ty); in lowerTypedBufferLoad() local
477 std::array<Value *, 3> Args{Handle, Index0, Index1}; in lowerTypedBufferLoad()
505 Value *Index1 = CI->getArgOperand(2); in lowerRawBufferLoad() local
515 {Handle, Index0, Index1, Mask, Align}, in lowerRawBufferLoad()
518 {Handle, Index0, Index1}, CI->getName(), in lowerRawBufferLoad()
599 Value *Index1 = IsRaw ? CI->getArgOperand(2) : UndefValue::get(Int32Ty); in lowerBufferStore() local
652 Handle, Index0, Index1, DataElements[0], in lowerBufferStore()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVectorCombine.cpp387 unsigned Index1 = Index1C->getZExtValue(); in getShuffleExtract() local
390 if (Index0 == Index1) in getShuffleExtract()
398 TTI.getVectorInstrCost(*Ext1, VecTy, CostKind, Index1); in getShuffleExtract()
416 if (PreferredExtractIndex == Index1) in getShuffleExtract()
420 return Index0 > Index1 ? Ext0 : Ext1; in getShuffleExtract()
1286 uint64_t Index0, Index1; in foldExtractedCmps() local
1288 !match(I1, m_ExtractElt(m_Specific(X), m_ConstantInt(Index1)))) in foldExtractedCmps()
1311 TTI.getVectorInstrCost(*Ext1, VecTy, CostKind, Index1); in foldExtractedCmps()
1323 int CheapIndex = ConvertToShuf == Ext0 ? Index1 : Index0; in foldExtractedCmps()
1324 int ExpensiveIndex = ConvertToShuf == Ext0 ? Index0 : Index1; in foldExtractedCmps()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSwLowerLDS.cpp600 Constant *Index1 = ConstantInt::get(Int32Ty, Indices[1]); in updateMallocSizeForDynamicLDS() local
604 MetadataStructType, SwLDSMetadata, {Index0, Index1, Index2Offset}); in updateMallocSizeForDynamicLDS()
610 {Index0, Index1, Index2Size}); in updateMallocSizeForDynamicLDS()
616 MetadataStructType, SwLDSMetadata, {Index0, Index1, Index2AlignedSize}); in updateMallocSizeForDynamicLDS()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1279 unsigned Index1 = !!(Mod & SISrcMods::OP_SEL_1); in printOpSel() local
1280 if (Index0 || Index1) in printOpSel()
1281 O << " op_sel:[" << Index0 << ',' << Index1 << ']'; in printOpSel()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp1640 uint64_t Index0, Index1; in foldTruncInsEltPair() local
1642 !match(IndexOp, m_ConstantInt(Index1)) || in foldTruncInsEltPair()
1650 if (Index0 + 1 != Index1 || Index0 & 1) in foldTruncInsEltPair()
1679 uint64_t NewIndex = IsBigEndian ? Index1 / 2 : Index0 / 2; in foldTruncInsEltPair()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTStructuralEquivalence.cpp1813 if (UnsignedOrNone Index1 = in IsStructurallyEquivalent() local
1818 if (*Index1 != *Index2) in IsStructurallyEquivalent()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp28139 int Index0, Index1; in scalarizeBinOpOfSplats() local
28141 SDValue Src1 = DAG.getSplatSourceVector(N1, Index1); in scalarizeBinOpOfSplats()
28146 if (!Src0 || !Src1 || Index0 != Index1 || in scalarizeBinOpOfSplats()