| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGSDNodes.cpp | 243 int64_t Offset1, Offset2; in ClusterNeighboringLoads() local 244 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) || in ClusterNeighboringLoads() 245 Offset1 == Offset2 || in ClusterNeighboringLoads() 253 O2SMap.insert(std::make_pair(Offset2, User)); in ClusterNeighboringLoads() 254 Offsets.push_back(Offset2); in ClusterNeighboringLoads() 255 if (Offset2 < Offset1) in ClusterNeighboringLoads()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | ConstraintElimination.cpp | 132 int64_t Offset2 = 0; in getConstraint() local 180 Offset2 = BDec[0].first; in getConstraint() 201 R[0] = Offset1 + Offset2 + (Pred == CmpInst::ICMP_ULT ? -1 : 0); in getConstraint()
|
| H A D | SeparateConstOffsetFromGEP.cpp | 1352 Value *Offset2 = Second->getOperand(1); in swapGEPOperand() local 1353 First->setOperand(1, Offset2); in swapGEPOperand()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelDAGToDAG.cpp | 1664 uint64_t Offset2 = N->getConstantOperandVal(OffsetOpIdx); in doPeepholeLoadStoreADDI() local 1668 int64_t CombinedOffset = Offset1 + Offset2; in doPeepholeLoadStoreADDI() 1680 if (Offset2 != 0 && Alignment <= Offset2) in doPeepholeLoadStoreADDI() 1683 int64_t CombinedOffset = Offset1 + Offset2; in doPeepholeLoadStoreADDI() 1690 if (Offset2 != 0 && Alignment <= Offset2) in doPeepholeLoadStoreADDI() 1693 int64_t CombinedOffset = Offset1 + Offset2; in doPeepholeLoadStoreADDI()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrInfo.h | 425 int64_t &Offset2) const override; 443 int64_t Offset2,
|
| H A D | X86InstrInfo.cpp | 6603 int64_t &Offset1, int64_t &Offset2) const { in areLoadsFromSameBasePtr() 6796 Offset2 = Disp2->getSExtValue(); in areLoadsFromSameBasePtr() 6801 int64_t Offset1, int64_t Offset2, in shouldScheduleLoadsNear() argument 6803 assert(Offset2 > Offset1); in shouldScheduleLoadsNear() 6804 if ((Offset2 - Offset1) / 8 > 64) in shouldScheduleLoadsNear()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MicroMipsSizeReduction.cpp | 400 int64_t Offset1, Offset2; in ConsecutiveInstr() local 403 if (!GetImm(MI2, 2, Offset2)) in ConsecutiveInstr() 409 return ((Offset1 == (Offset2 - 4)) && (ConsecutiveRegisters(Reg1, Reg2))); in ConsecutiveInstr()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ContainerModeling.cpp | 141 SymbolRef Offset2, 975 SymbolRef Offset2, in invalidateIteratorPositions() argument 979 compare(State, Pos.getOffset(), Offset2, Opc2); in invalidateIteratorPositions()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.h | 248 int64_t &Offset2) const override; 259 int64_t Offset1, int64_t Offset2,
|
| H A D | ARMBaseInstrInfo.cpp | 1916 int64_t &Offset2) const { in areLoadsFromSameBasePtr() 1977 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue(); in areLoadsFromSameBasePtr() 1996 int64_t Offset1, int64_t Offset2, in shouldScheduleLoadsNear() argument 2001 assert(Offset2 > Offset1); in shouldScheduleLoadsNear() 2003 if ((Offset2 - Offset1) / 8 > 64) in shouldScheduleLoadsNear()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetInstrInfo.h | 1311 int64_t &Offset2) const { in areLoadsFromSameBasePtr() argument 1324 int64_t Offset1, int64_t Offset2, in shouldScheduleLoadsNear() argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrInfo.cpp | 1620 int64_t Offset2 = (MCID.TSFlags & SystemZII::Is128Bit ? Offset + 8 : Offset); in getOpcodeForOffset() local 1621 if (isUInt<12>(Offset) && isUInt<12>(Offset2)) { in getOpcodeForOffset() 1631 if (isInt<20>(Offset) && isInt<20>(Offset2)) { in getOpcodeForOffset()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.cpp | 3116 int64_t Offset2, unsigned Opcode2) { in shouldClusterFI() argument 3133 ObjectOffset2 += Offset2; in shouldClusterFI() 3186 int64_t Offset2 = SecondLdSt.getOperand(2).getImm(); in shouldClusterMemOps() local 3187 if (hasUnscaledLdStOffset(SecondOpc) && !scaleOffset(SecondOpc, Offset2)) in shouldClusterMemOps() 3197 assert((!BaseOp1.isIdenticalTo(BaseOp2) || Offset1 <= Offset2) && in shouldClusterMemOps() 3203 BaseOp2.getIndex(), Offset2, SecondOpc); in shouldClusterMemOps() 3206 assert(Offset1 <= Offset2 && "Caller should have ordered offsets."); in shouldClusterMemOps() 3208 return Offset1 + 1 == Offset2; in shouldClusterMemOps()
|
| H A D | AArch64InstrFormats.td | 10015 int Offset1, int Offset2, int Offset4, int Offset8> { 10041 !cast<DAGOperand>("GPR64pi" # Offset2)>; 10044 !cast<DAGOperand>("GPR64pi" # Offset2)>; 10060 defm : SIMDLdrAliases<NAME, asm, "4h", Count, Offset2, 64>; 10061 defm : SIMDLdrAliases<NAME, asm, "8h", Count, Offset2, 128>;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachinePipeliner.cpp | 775 int64_t Offset1, Offset2; in addLoopCarriedDependences() local 779 TII->getMemOperandWithOffset(MI, BaseOp2, Offset2, in addLoopCarriedDependences() 783 (int)Offset1 < (int)Offset2) { in addLoopCarriedDependences()
|
| H A D | CodeGenPrepare.cpp | 2122 uint64_t Offset2 = Offset.getLimitedValue(); in optimizeCallInst() local 2123 if ((Offset2 & (PrefAlign-1)) != 0) in optimizeCallInst() 2127 DL->getTypeAllocSize(AI->getAllocatedType()) >= MinSize + Offset2) in optimizeCallInst() 2137 MinSize + Offset2) in optimizeCallInst()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIInstrInfo.h | 187 int64_t &Offset2) const override;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrInfo.cpp | 2845 int64_t Offset1 = 0, Offset2 = 0; in shouldClusterMemOps() local 2849 !getMemOperandWithOffsetWidth(SecondLdSt, Base2, Offset2, Width2, TRI) || in shouldClusterMemOps() 2856 assert(Offset1 <= Offset2 && "Caller should have ordered offsets."); in shouldClusterMemOps() 2857 return Offset1 + Width1 == Offset2; in shouldClusterMemOps()
|
| H A D | PPCISelLowering.cpp | 12806 int64_t Offset1 = 0, Offset2 = 0; in isConsecutiveLSLoc() local 12808 getBaseWithConstantOffset(BaseLoc, Base2, Offset2, DAG); in isConsecutiveLSLoc() 12809 if (Base1 == Base2 && Offset1 == (Offset2 + Dist * Bytes)) in isConsecutiveLSLoc() 12816 Offset2 = 0; in isConsecutiveLSLoc() 12818 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2); in isConsecutiveLSLoc() 12820 return Offset1 == (Offset2 + Dist*Bytes); in isConsecutiveLSLoc()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 7161 auto Offset2 = getOffsetFromIndex(GEP2, Idx, DL); in isPointerOffset() local 7162 if (!Offset1 || !Offset2) in isPointerOffset() 7164 return *Offset2 - *Offset1; in isPointerOffset()
|