Searched refs:NumBytes (Results 1 - 25 of 115) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEFrameLowering.cpp37 int NumBytes,
75 int NumBytes,
109 int NumBytes) const {
114 if (NumBytes >= -64 && NumBytes < 63) {
117 .addImm(NumBytes);
123 // lea %s13,%lo(NumBytes)
125 // lea.sl %sp,%hi(NumBytes)(%sp, %s13)
127 .addImm(LO32(NumBytes));
134 .addImm(HI32(NumBytes));
34 emitPrologueInsns(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, int NumBytes, bool RequireFPUpdate) const argument
72 emitEpilogueInsns(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, int NumBytes, bool RequireFPUpdate) const argument
201 int NumBytes = (int)MFI.getStackSize(); local
275 int NumBytes = (int)MFI.getStackSize(); local
[all...]
H A DVEFrameLowering.h31 MachineBasicBlock::iterator MBBI, int NumBytes,
34 MachineBasicBlock::iterator MBBI, int NumBytes,
72 MachineBasicBlock::iterator MBBI, int NumBytes) const;
76 MachineBasicBlock::iterator MBBI, int NumBytes) const;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp119 /// erase - Remove NumBytes from this node at the specified offset. We are
121 void erase(unsigned Offset, unsigned NumBytes);
219 /// erase - Remove NumBytes from this node at the specified offset. We are
221 void erase(unsigned Offset, unsigned NumBytes);
335 /// erase - Remove NumBytes from this node at the specified offset. We are
337 void RopePieceBTreeLeaf::erase(unsigned Offset, unsigned NumBytes) {
348 // Figure out how many pieces completely cover 'NumBytes'. We want to remove
350 for (; Offset+NumBytes > PieceOffs+getPiece(i).size(); ++i)
354 if (Offset+NumBytes == PieceOffs+getPiece(i).size()) {
371 NumBytes
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp43 int NumBytes,
51 if (NumBytes >= -4096 && NumBytes < 4096) {
53 .addReg(SP::O6).addImm(NumBytes);
59 if (NumBytes >= 0) {
61 // sethi %hi(NumBytes), %g1
62 // or %g1, %lo(NumBytes), %g1
65 .addImm(HI22(NumBytes));
67 .addReg(SP::G1).addImm(LO10(NumBytes));
74 // sethi %hix(NumBytes),
40 emitSPAdjustment(MachineFunction &MF, MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI, int NumBytes, unsigned ADDrr, unsigned ADDri) const argument
113 int NumBytes = (int) MFI.getStackSize(); local
236 int NumBytes = (int) MFI.getStackSize(); local
[all...]
H A DSparcFrameLowering.h61 int NumBytes, unsigned ADDrr, unsigned ADDri) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430FrameLowering.cpp54 uint64_t NumBytes = 0; local
58 NumBytes = FrameSize - MSP430FI->getCalleeSavedFrameSize();
63 MFI.setOffsetAdjustment(-NumBytes);
79 NumBytes = StackSize - MSP430FI->getCalleeSavedFrameSize();
88 if (NumBytes) { // adjust stack pointer: SP -= numbytes
91 //NumBytes -= mergeSPUpdates(MBB, MBBI, true);
94 // mergeSPUpdatesDown(MBB, MBBI, &NumBytes);
96 if (NumBytes) {
99 .addReg(MSP430::SP).addImm(NumBytes);
127 uint64_t NumBytes local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DIMSFFile.h33 uint32_t NumBytes) const = 0;
H A DMSFCommon.h108 inline uint64_t bytesToBlocks(uint64_t NumBytes, uint64_t BlockSize) { argument
109 return divideCeil(NumBytes, BlockSize);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h156 void erase(unsigned Offset, unsigned NumBytes);
202 void erase(unsigned Offset, unsigned NumBytes) { argument
203 assert(Offset+NumBytes <= size() && "Invalid region to erase!");
204 if (NumBytes == 0) return;
205 Chunks.erase(Offset, NumBytes);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb1FrameLowering.cpp70 const ThumbRegisterInfo &MRI, int NumBytes,
74 if (std::abs(NumBytes) > 508 * 3) {
85 .addImm(NumBytes).setMIFlags(MIFlags);
87 MRI.emitLoadConstPool(MBB, MBBI, dl, ScratchReg, 0, NumBytes, ARMCC::AL,
97 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, TII,
105 const ThumbRegisterInfo &MRI, int NumBytes,
107 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, TII,
158 unsigned NumBytes = MFI.getStackSize(); local
159 assert(NumBytes >= ArgRegsSaveSize &&
160 "ArgRegsSaveSize is included in NumBytes");
67 emitPrologueEpilogueSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const TargetInstrInfo &TII, const DebugLoc &dl, const ThumbRegisterInfo &MRI, int NumBytes, unsigned ScratchReg, unsigned MIFlags) argument
102 emitCallSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const TargetInstrInfo &TII, const DebugLoc &dl, const ThumbRegisterInfo &MRI, int NumBytes, unsigned MIFlags = MachineInstr::NoFlags) argument
482 int NumBytes = (int)MFI.getStackSize(); local
[all...]
H A DThumbRegisterInfo.cpp126 const DebugLoc &dl, unsigned DestReg, unsigned BaseReg, int NumBytes,
138 if (NumBytes < 0 && !isHigh && CanChangeCC) {
140 NumBytes = -NumBytes;
148 if (NumBytes <= 255 && NumBytes >= 0 && CanChangeCC) {
151 .addImm(NumBytes)
153 } else if (NumBytes < 0 && NumBytes >= -255 && CanChangeCC) {
156 .addImm(NumBytes)
124 emitThumbRegPlusImmInReg( MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const DebugLoc &dl, unsigned DestReg, unsigned BaseReg, int NumBytes, bool CanChangeCC, const TargetInstrInfo &TII, const ARMBaseRegisterInfo &MRI, unsigned MIFlags = MachineInstr::NoFlags) argument
186 emitThumbRegPlusImmediate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const DebugLoc &dl, unsigned DestReg, unsigned BaseReg, int NumBytes, const TargetInstrInfo &TII, const ARMBaseRegisterInfo &MRI, unsigned MIFlags) argument
[all...]
H A DThumb2InstrInfo.cpp233 unsigned BaseReg, int NumBytes,
237 if (NumBytes == 0 && DestReg != BaseReg) {
244 bool isSub = NumBytes < 0;
245 if (isSub) NumBytes = -NumBytes;
250 NumBytes >= 4096 &&
251 ARM_AM::getT2SOImmVal(NumBytes) == -1) {
253 if (NumBytes < 65536) {
256 .addImm(NumBytes)
259 } else if ((NumBytes
230 emitT2RegPlusImmediate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const DebugLoc &dl, unsigned DestReg, unsigned BaseReg, int NumBytes, ARMCC::CondCodes Pred, unsigned PredReg, const ARMBaseInstrInfo &TII, unsigned MIFlags) argument
[all...]
H A DARMFrameLowering.cpp169 unsigned SrcReg, int NumBytes, unsigned MIFlags = MachineInstr::NoFlags,
172 emitARMRegPlusImmediate(MBB, MBBI, dl, DestReg, SrcReg, NumBytes,
175 emitT2RegPlusImmediate(MBB, MBBI, dl, DestReg, SrcReg, NumBytes,
181 const ARMBaseInstrInfo &TII, int NumBytes,
185 emitRegPlusImmediate(isARM, MBB, MBBI, dl, TII, ARM::SP, ARM::SP, NumBytes,
372 unsigned NumBytes = MFI.getStackSize(); local
403 (!STI.isTargetWindows() || !WindowsRequiresStackProbe(MF, NumBytes))) {
404 if (NumBytes - ArgRegsSaveSize != 0) {
405 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -(NumBytes - ArgRegsSaveSize),
408 NumBytes
166 emitRegPlusImmediate( bool isARM, MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const DebugLoc &dl, const ARMBaseInstrInfo &TII, unsigned DestReg, unsigned SrcReg, int NumBytes, unsigned MIFlags = MachineInstr::NoFlags, ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0) argument
179 emitSPUpdate(bool isARM, MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const DebugLoc &dl, const ARMBaseInstrInfo &TII, int NumBytes, unsigned MIFlags = MachineInstr::NoFlags, ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0) argument
573 DefCFAOffsetCandidates.addInst(std::prev(MBBI), NumBytes); local
782 int NumBytes = (int)MFI.getStackSize(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiAsmBackend.cpp108 unsigned NumBytes = (getFixupKindInfo(Kind).TargetSize + 7) / 8; local
115 for (unsigned i = 0; i != NumBytes; ++i) {
126 for (unsigned i = 0; i != NumBytes; ++i) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp110 unsigned NumBytes = alignTo(Info.TargetSize, 8) / 8; local
118 assert(Offset + NumBytes <= Data.size() && "Invalid fixup offset!");
122 for (unsigned I = 0; I != NumBytes; ++I)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.h31 unsigned NumBytes = 0; member in class:llvm::DwarfStringPool
H A DDwarfStringPool.cpp32 Entry.Offset = NumBytes;
35 NumBytes += Str.size() + 1;
36 assert(NumBytes > Entry.Offset && "Unexpected overflow");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackOffset.h107 void getForFrameOffset(int64_t &NumBytes, int64_t &NumPredicateVectors, argument
111 NumBytes = Bytes;
H A DAArch64FrameLowering.cpp248 uint64_t NumBytes = AFI->getLocalStackSize(); local
250 return !(MFI.hasCalls() || hasFP(MF) || NumBytes > 128 ||
938 int64_t NumBytes = IsFunclet ? getWinEHFuncletFrameSize(MF) local
940 if (!AFI->hasStackFrame() && !windowsRequiresStackProbe(MF, NumBytes)) {
945 AFI->setLocalStackSize(NumBytes);
946 if (!NumBytes)
955 {-NumBytes, MVT::i8}, TII, MachineInstr::FrameSetup,
962 MCCFIInstruction::createDefCfaOffset(FrameLabel, -NumBytes));
984 AFI->setLocalStackSize(NumBytes - PrologueSaveSize);
985 bool CombineSPBump = shouldCombineCSRLocalStackBump(MF, NumBytes);
1402 int64_t NumBytes = IsFunclet ? getWinEHFuncletFrameSize(MF) local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOAArch64.h37 unsigned NumBytes = 1 << RE.Size; local
53 if (NumBytes != 4 && NumBytes != 8) {
70 assert(NumBytes == 4 && "Invalid relocation size.");
82 if (NumBytes == 4)
155 void encodeAddend(uint8_t *LocalAddress, unsigned NumBytes, argument
163 assert((NumBytes == 4 || NumBytes == 8) && "Invalid relocation size.");
170 assert(NumBytes == 4 && "Invalid relocation size.");
182 if (NumBytes
491 unsigned NumBytes = 1 << Size; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/
H A DMSP430AsmBackend.cpp147 unsigned NumBytes = alignTo(Info.TargetSize + Info.TargetOffset, 8) / 8; local
149 assert(Offset + NumBytes <= Data.size() && "Invalid fixup offset!");
153 for (unsigned i = 0; i != NumBytes; ++i) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DMemory.inc100 MemoryBlock Memory::allocateMappedMemory(size_t NumBytes,
105 if (NumBytes == 0)
121 size_t NumBlocks = (NumBytes + Granularity - 1) / Granularity;
140 return allocateMappedMemory(NumBytes, NULL, Flags & ~MF_HUGE_HINT, EC);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp144 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
147 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAbbreviationDeclaration.cpp101 FixedAttributeSize->NumBytes += *ByteSize;
187 size_t ByteSize = NumBytes;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h54 /// This method attempts to allocate \p NumBytes bytes of virtual memory for
74 allocateMappedMemory(AllocationPurpose Purpose, size_t NumBytes,

Completed in 160 milliseconds

12345