Home
last modified time | relevance | path

Searched refs:NewOffset (Results 1 – 25 of 27) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/
DARCOptAddrMode.cpp101 unsigned NewBase, MachineOperand &NewOffset);
346 int64_t NewOffset = Incr.getImm(); in canFixPastUses() local
350 if (isValidIncrementOffset(Dummy + NewOffset)) in canFixPastUses()
354 if (isLoadStoreThatCanHandleDisplacement(AII, *MI, -NewOffset)) in canFixPastUses()
356 LLVM_DEBUG(dbgs() << "Instruction cannot handle displacement " << -NewOffset in canFixPastUses()
364 unsigned NewBase, int64_t NewOffset) { in fixPastUses() argument
370 NewOffset += Amount; in fixPastUses()
371 assert(isValidIncrementOffset(NewOffset) && in fixPastUses()
378 NewOffset += MO.getImm(); in fixPastUses()
379 assert(isValidLoadStoreOffset(NewOffset) && in fixPastUses()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DBinaryStreamReader.cpp113 uint32_t NewOffset = getOffset(); in readWideString() local
118 setOffset(NewOffset); in readWideString()
156 uint32_t NewOffset = alignTo(Offset, Align); in padToAlignment() local
157 return skip(NewOffset - Offset); in padToAlignment()
DBinaryStreamWriter.cpp96 uint32_t NewOffset = alignTo(Offset, Align); in padToAlignment() local
97 if (NewOffset > getLength()) in padToAlignment()
99 while (Offset < NewOffset) in padToAlignment()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DInfoStream.cpp48 uint32_t NewOffset = Reader.getOffset(); in reload() local
49 NamedStreamMapByteSize = NewOffset - Offset; in reload()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DGuardWidening.cpp206 void setOffset(const ConstantInt *NewOffset) { Offset = NewOffset; } in setOffset() argument
633 APInt NewOffset = Check.getOffsetValue() + OpRHS->getValue(); in parseRangeChecks() local
634 Check.setOffset(ConstantInt::get(Ctx, NewOffset)); in parseRangeChecks()
641 APInt NewOffset = Check.getOffsetValue() + OpRHS->getValue(); in parseRangeChecks() local
642 Check.setOffset(ConstantInt::get(Ctx, NewOffset)); in parseRangeChecks()
DLoopStrengthReduce.cpp1975 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
2519 bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, in reconcileNewOffset() argument
2543 if (NewOffset < LU.MinOffset) { in reconcileNewOffset()
2545 LU.MaxOffset - NewOffset, HasBaseReg)) in reconcileNewOffset()
2547 NewMinOffset = NewOffset; in reconcileNewOffset()
2548 } else if (NewOffset > LU.MaxOffset) { in reconcileNewOffset()
2550 NewOffset - LU.MinOffset, HasBaseReg)) in reconcileNewOffset()
2552 NewMaxOffset = NewOffset; in reconcileNewOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineMemOperand.h288 void setOffset(int64_t NewOffset) { PtrInfo.Offset = NewOffset; } in setOffset() argument
DMachinePipeliner.h307 int64_t &NewOffset);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DIntervalMap.h1175 IdxPair NewOffset(0, Position); in branchRoot()
1181 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, nullptr, size, in branchRoot()
1202 return NewOffset; in branchRoot()
1216 IdxPair NewOffset(0, Position); in splitRoot()
1222 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, nullptr, Size, in splitRoot()
1241 return NewOffset; in splitRoot()
2006 IdxPair NewOffset = distribute(Nodes, Elements, NodeT::Capacity, in overflow() local
2033 while(Pos != NewOffset.first) { in overflow()
2037 P.offset(Level) = NewOffset.second; in overflow()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIRegisterInfo.cpp406 int64_t NewOffset = OffsetOp->getImm() + Offset; in resolveFrameIndex() local
407 assert(isUInt<12>(NewOffset) && "offset should be legal"); in resolveFrameIndex()
410 OffsetOp->setImm(NewOffset); in resolveFrameIndex()
419 int64_t NewOffset = Offset + getMUBUFInstrOffset(MI); in isFrameOffsetLegal() local
421 return isUInt<12>(NewOffset); in isFrameOffsetLegal()
1203 int64_t NewOffset = OldImm + Offset; in eliminateFrameIndex() local
1205 if (isUInt<12>(NewOffset) && in eliminateFrameIndex()
1206 buildMUBUFOffsetLoadStore(ST, FrameInfo, MI, Index, NewOffset)) { in eliminateFrameIndex()
DSILoadStoreOptimizer.cpp239 int32_t NewOffset) const;
1648 int32_t NewOffset) const { in updateBaseAndOffset()
1652 TII->getNamedOperand(MI, AMDGPU::OpName::offset)->setImm(NewOffset); in updateBaseAndOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldImpl.h229 void setOffset(uint64_t NewOffset) { Offset = NewOffset; } in setOffset() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h508 void setOffset(uint64_t NewOffset) { in setOffset() argument
509 assert(NewOffset <= MaxOffset && "Offset out of range"); in setOffset()
510 Offset = NewOffset; in setOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachinePipeliner.cpp845 int64_t NewOffset = 0; in changeDependences() local
847 NewOffset)) in changeDependences()
897 InstrChanges[&I] = std::make_pair(NewBase, NewOffset); in changeDependences()
2174 int64_t NewOffset = in applyInstrChange() local
2176 NewMI->getOperand(OffsetPos).setImm(NewOffset); in applyInstrChange()
2781 int64_t NewOffset = in fixupRegisterOverlaps() local
2783 NewMI->getOperand(OffsetPos).setImm(NewOffset); in fixupRegisterOverlaps()
DModuloSchedule.cpp1009 int64_t NewOffset = OldMI->getOperand(OffsetPos).getImm(); in cloneAndChangeInstr() local
1012 NewOffset += RegAndOffset.second * (CurStageNum - InstStageNum); in cloneAndChangeInstr()
1013 NewMI->getOperand(OffsetPos).setImm(NewOffset); in cloneAndChangeInstr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp94 void setOffset(int64_t NewOffset) { in setOffset() argument
95 assert(NewOffset >= 0 && "Offsets must be non-negative"); in setOffset()
96 Offset = NewOffset; in setOffset()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceOperand.h761 void setRematerializable(RegNumT NewRegNum, int32_t NewOffset) { in setRematerializable() argument
764 setStackOffset(NewOffset); in setRematerializable()
DIceTargetLoweringARM32.cpp5336 int32_t NewOffset = MoreOffset + *Offset; in matchAssign() local
5340 *Offset += NewOffset; in matchAssign()
5519 int32_t NewOffset = *Offset; in matchOffsetBase() local
5543 if (Utils::WouldOverflowAdd(NewOffset, MoreOffset)) in matchOffsetBase()
5545 NewOffset += MoreOffset; in matchOffsetBase()
5549 if (Utils::WouldOverflowAdd(NewOffset, MoreOffset)) in matchOffsetBase()
5551 NewOffset += MoreOffset; in matchOffsetBase()
5557 *Offset = NewOffset; in matchOffsetBase()
DIceTargetLoweringMIPS32.cpp5198 int32_t NewOffset = MoreOffset + *Offset; in matchAssign() local
5202 *Offset += NewOffset; in matchAssign()
5256 int32_t NewOffset = *Offset; in matchOffsetBase() local
5280 if (Utils::WouldOverflowAdd(NewOffset, MoreOffset)) in matchOffsetBase()
5282 NewOffset += MoreOffset; in matchOffsetBase()
5286 if (Utils::WouldOverflowAdd(NewOffset, MoreOffset)) in matchOffsetBase()
5288 NewOffset += MoreOffset; in matchOffsetBase()
5294 *Offset = NewOffset; in matchOffsetBase()
DIceTargetLoweringX8664.cpp4731 int32_t NewOffset = 0; in matchOffsetIndexOrBase() local
4757 if (Utils::WouldOverflowAdd(*Offset + NewOffset, MoreOffset)) in matchOffsetIndexOrBase()
4759 NewOffset += MoreOffset; in matchOffsetIndexOrBase()
4764 if (Utils::WouldOverflowAdd(*Offset + NewOffset, MoreOffset)) in matchOffsetIndexOrBase()
4766 NewOffset += MoreOffset; in matchOffsetIndexOrBase()
4768 if (Utils::WouldOverflowAdd(*Offset, NewOffset << Shift)) in matchOffsetIndexOrBase()
4771 *Offset += (NewOffset << Shift); in matchOffsetIndexOrBase()
DIceTargetLoweringX8632.cpp5310 int32_t NewOffset = 0; in matchOffsetIndexOrBase() local
5336 if (Utils::WouldOverflowAdd(*Offset + NewOffset, MoreOffset)) in matchOffsetIndexOrBase()
5338 NewOffset += MoreOffset; in matchOffsetIndexOrBase()
5343 if (Utils::WouldOverflowAdd(*Offset + NewOffset, MoreOffset)) in matchOffsetIndexOrBase()
5345 NewOffset += MoreOffset; in matchOffsetIndexOrBase()
5347 if (Utils::WouldOverflowAdd(*Offset, NewOffset << Shift)) in matchOffsetIndexOrBase()
5350 *Offset += (NewOffset << Shift); in matchOffsetIndexOrBase()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp3495 int64_t NewOffset = Offset / Scale; in isAArch64FrameOffsetLegal() local
3496 if (MinOff <= NewOffset && NewOffset <= MaxOff) in isAArch64FrameOffsetLegal()
3499 NewOffset = NewOffset < 0 ? MinOff : MaxOff; in isAArch64FrameOffsetLegal()
3500 Offset = Offset - NewOffset * Scale + Remainder; in isAArch64FrameOffsetLegal()
3504 *EmittableOffset = NewOffset; in isAArch64FrameOffsetLegal()
3536 int64_t NewOffset; in rewriteAArch64FrameIndex() local
3540 &UnscaledOp, &NewOffset); in rewriteAArch64FrameIndex()
3548 MI.getOperand(ImmIdx).ChangeToImmediate(NewOffset); in rewriteAArch64FrameIndex()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DCombinerHelper.cpp1380 auto NewOffset = MIB.buildConstant(OffsetTy, MatchInfo.Imm); in applyPtrAddImmedChain() local
1383 MI.getOperand(2).setReg(NewOffset.getReg(0)); in applyPtrAddImmedChain()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp1727 SDValue NewOffset; in tryMVEIndexedLoad() local
1729 SelectT2AddrModeImm7Offset(N, Offset, NewOffset, 1)) { in tryMVEIndexedLoad()
1735 SelectT2AddrModeImm7Offset(N, Offset, NewOffset, 0)) { in tryMVEIndexedLoad()
1741 SelectT2AddrModeImm7Offset(N, Offset, NewOffset, 0)) { in tryMVEIndexedLoad()
1749 SelectT2AddrModeImm7Offset(N, Offset, NewOffset, 2)) in tryMVEIndexedLoad()
1754 SelectT2AddrModeImm7Offset(N, Offset, NewOffset, 1)) in tryMVEIndexedLoad()
1757 SelectT2AddrModeImm7Offset(N, Offset, NewOffset, 0)) in tryMVEIndexedLoad()
1762 SDValue Ops[] = {Base, NewOffset, in tryMVEIndexedLoad()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1813 unsigned NewOffset = (Offset + AlignMask) & ~AlignMask; in EmitConstantPool() local
1814 OutStreamer->EmitZeros(NewOffset - Offset); in EmitConstantPool()
1817 Offset = NewOffset + getDataLayout().getTypeAllocSize(Ty); in EmitConstantPool()

12