Home
last modified time | relevance | path

Searched refs:Offset2 (Results 1 - 17 of 17) sorted by relevance

/third_party/json/tests/thirdparty/Fuzzer/test/
H A DCustomCrossOverTest.cpp51 size_t Offset2 = 0; in LLVMFuzzerCustomCrossOver() local
52 size_t Len2 = R() % (Size2 - Offset2); in LLVMFuzzerCustomCrossOver()
60 memcpy(Out + Len1 + SeparatorLen, Data2 + Offset2, Len2); in LLVMFuzzerCustomCrossOver()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp240 int64_t Offset1, Offset2; in ClusterNeighboringLoads() local
241 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) || in ClusterNeighboringLoads()
242 Offset1 == Offset2 || in ClusterNeighboringLoads()
250 O2SMap.insert(std::make_pair(Offset2, User)); in ClusterNeighboringLoads()
251 Offsets.push_back(Offset2); in ClusterNeighboringLoads()
252 if (Offset2 < Offset1) in ClusterNeighboringLoads()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86InstrInfo.h382 int64_t &Offset2) const override;
393 int64_t Offset2,
H A DX86InstrInfo.cpp5747 int64_t &Offset1, int64_t &Offset2) const { in areLoadsFromSameBasePtr()
5940 Offset2 = Disp2->getSExtValue(); in areLoadsFromSameBasePtr()
5945 int64_t Offset1, int64_t Offset2, in shouldScheduleLoadsNear()
5947 assert(Offset2 > Offset1); in shouldScheduleLoadsNear()
5948 if ((Offset2 - Offset1) / 8 > 64) in shouldScheduleLoadsNear()
5944 shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2, int64_t Offset1, int64_t Offset2, unsigned NumLoads) const shouldScheduleLoadsNear() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMicroMipsSizeReduction.cpp400 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h246 int64_t &Offset2) const override;
257 int64_t Offset1, int64_t Offset2,
H A DARMBaseInstrInfo.cpp1837 int64_t &Offset2) const { in areLoadsFromSameBasePtr()
1898 Offset2 = cast<ConstantSDNode>(Load2->getOperand(1))->getSExtValue(); in areLoadsFromSameBasePtr()
1917 int64_t Offset1, int64_t Offset2, in shouldScheduleLoadsNear()
1922 assert(Offset2 > Offset1); in shouldScheduleLoadsNear()
1924 if ((Offset2 - Offset1) / 8 > 64) in shouldScheduleLoadsNear()
1916 shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2, int64_t Offset1, int64_t Offset2, unsigned NumLoads) const shouldScheduleLoadsNear() argument
/third_party/node/deps/v8/src/utils/
H A Dutils.h233 #define STATIC_ASSERT_FIELD_OFFSETS_EQUAL(Offset1, Offset2) \
234 STATIC_ASSERT(static_cast<int>(Offset1) == Offset2)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h1220 int64_t &Offset2) const { in areLoadsFromSameBasePtr()
1233 int64_t Offset1, int64_t Offset2, in shouldScheduleLoadsNear()
1232 shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2, int64_t Offset1, int64_t Offset2, unsigned NumLoads) const shouldScheduleLoadsNear() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp1295 Value *Offset2 = Second->getOperand(1); in swapGEPOperand() local
1296 First->setOperand(1, Offset2); in swapGEPOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1512 int64_t Offset2 = (MCID.TSFlags & SystemZII::Is128Bit ? Offset + 8 : Offset); in getOpcodeForOffset() local
1513 if (isUInt<12>(Offset) && isUInt<12>(Offset2)) { in getOpcodeForOffset()
1523 if (isInt<20>(Offset) && isInt<20>(Offset2)) { in getOpcodeForOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp2339 int64_t Offset2, unsigned Opcode2) { in shouldClusterFI()
2356 ObjectOffset2 += Offset2; in shouldClusterFI()
2405 int64_t Offset2 = SecondLdSt.getOperand(2).getImm(); in shouldClusterMemOps()
2406 if (isUnscaledLdSt(SecondOpc) && !scaleOffset(SecondOpc, Offset2)) in shouldClusterMemOps()
2416 assert((!BaseOp1.isIdenticalTo(BaseOp2) || Offset1 <= Offset2) && in shouldClusterMemOps()
2422 BaseOp2.getIndex(), Offset2, SecondOpc); in shouldClusterMemOps()
2425 assert(Offset1 <= Offset2 && "Caller should have ordered offsets."); in shouldClusterMemOps()
2427 return Offset1 + 1 == Offset2; in shouldClusterMemOps()
2337 shouldClusterFI(const MachineFrameInfo &MFI, int FI1, int64_t Offset1, unsigned Opcode1, int FI2, int64_t Offset2, unsigned Opcode2) shouldClusterFI() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp695 int64_t Offset1, Offset2; in addLoopCarriedDependences() local
697 TII->getMemOperandWithOffset(MI, BaseOp2, Offset2, TRI)) { in addLoopCarriedDependences()
699 (int)Offset1 < (int)Offset2) { in addLoopCarriedDependences()
H A DCodeGenPrepare.cpp1909 uint64_t Offset2 = Offset.getLimitedValue(); in optimizeCallInst() local
1910 if ((Offset2 & (PrefAlign-1)) != 0) in optimizeCallInst()
1914 DL->getTypeAllocSize(AI->getAllocatedType()) >= MinSize + Offset2) in optimizeCallInst()
1924 MinSize + Offset2) in optimizeCallInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIInstrInfo.h182 int64_t &Offset2) const override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DValueTracking.cpp5993 auto Offset2 = getOffsetFromIndex(GEP2, Idx, DL); in isPointerOffset() local
5994 if (!Offset1 || !Offset2) in isPointerOffset()
5996 return *Offset2 - *Offset1; in isPointerOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp12057 int64_t Offset1 = 0, Offset2 = 0; in isConsecutiveLSLoc() local
12059 getBaseWithConstantOffset(BaseLoc, Base2, Offset2, DAG); in isConsecutiveLSLoc()
12060 if (Base1 == Base2 && Offset1 == (Offset2 + Dist * Bytes)) in isConsecutiveLSLoc()
12067 Offset2 = 0; in isConsecutiveLSLoc()
12069 bool isGA2 = TLI.isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2); in isConsecutiveLSLoc()
12071 return Offset1 == (Offset2 + Dist*Bytes); in isConsecutiveLSLoc()

Completed in 86 milliseconds