Searched refs:NumBytes (Results 51 - 75 of 123) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp524 uint32_t NumBytes = (OC[Offset] & 0x1F) << 4; local
527 NumBytes);
570 uint32_t NumBytes = ((OC[Offset] & 0x07) << 8); local
571 NumBytes |= (OC[Offset + 1] & 0xFF);
572 NumBytes <<= 4;
576 NumBytes);
752 unsigned NumBytes = OC[Offset + 1] << 3; local
754 OC[Offset], OC[Offset + 1], NumBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp171 unsigned NumBytes = 0; local
174 ++NumBytes;
176 return NumBytes+1;
188 unsigned NumBytes = 0; local
192 ++NumBytes;
198 return NumBytes+1;
H A DCodeEmitterGen.cpp480 int NumBytes = (BitWidth + 7) / 8; local
487 << "], " << NumBytes << ");\n" local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp255 size_t NumBytes = OutBufEnd - OutBufCur; local
261 assert(NumBytes != 0 && "undefined behavior");
262 size_t BytesToWrite = Size - (Size % NumBytes);
275 copy_to_buffer(Ptr, NumBytes);
277 return write(Ptr + NumBytes, Size - NumBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64CallLowering.cpp863 unsigned NumBytes = 0;
875 NumBytes = alignTo(OutInfo.getNextStackOffset(), 16);
880 FPDiff = NumReusableBytes - NumBytes;
923 CallSeqStart.addImm(NumBytes).addImm(0);
928 MIRBuilder.buildInstr(AArch64::ADJCALLSTACKUP).addImm(NumBytes).addImm(0);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp195 unsigned &NumBytes,
197 bool finishCall(MVT RetVT, CallLoweringInfo &CLI, unsigned &NumBytes);
1383 unsigned &NumBytes,
1411 NumBytes = CCInfo.getNextStackOffset();
1419 NumBytes = std::max(NumBytes, LinkageSize + 64);
1424 .addImm(NumBytes).addImm(0);
1493 bool PPCFastISel::finishCall(MVT RetVT, CallLoweringInfo &CLI, unsigned &NumBytes) { argument
1499 .addImm(NumBytes).addImm(0);
1640 unsigned NumBytes; local
1377 processCallArgs(SmallVectorImpl<Value*> &Args, SmallVectorImpl<unsigned> &ArgRegs, SmallVectorImpl<MVT> &ArgVTs, SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags, SmallVectorImpl<unsigned> &RegArgs, CallingConv::ID CC, unsigned &NumBytes, bool IsVarArg) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEInstrInfo.cpp591 unsigned NumBytes = STI.getAdjustedFrameSize(0); local
595 NumBytes += MFI.getMaxCallFrameSize();
601 .addImm(NumBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp1206 // refers to (passed in NumBytes), and it contains up to 32 bytes of actual text
1209 uint64_t NumBytes) {
1210 assert(NumBytes > 0);
1213 if (NumBytes % 2 == 1)
1219 if (NumBytes < 32) {
1221 if (TrailingNulls >= 4 && NumBytes % 4 == 0)
1235 if (Nulls >= 2 * NumChars / 3 && NumBytes % 4 == 0)
1208 guessCharByteSize(const uint8_t *StringBytes, unsigned NumChars, uint64_t NumBytes) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp106 uint32_t NumBytes) const {
110 if (auto EC = Buffer->readBytes(StreamBlockOffset, NumBytes, Result))
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp125 /// Gets an llvm type of size NumBytes and alignment 1.
126 llvm::Type *getByteArrayType(CharUnits NumBytes) { argument
127 assert(!NumBytes.isZero() && "Empty byte arrays aren't allowed.");
129 return NumBytes == CharUnits::One() ? Type :
130 (llvm::Type *)llvm::ArrayType::get(Type, NumBytes.getQuantity());
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp309 unsigned NumBytes = llvm::getNumBytesForUTF8(FirstByte); local
310 if (NumBytes == 1)
312 if (SB + NumBytes > SE)
315 Len = NumBytes + 1;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp336 template <size_t NumBytes> struct zeros_impl {};
338 template <size_t NumBytes>
339 raw_ostream &operator<<(raw_ostream &OS, const zeros_impl<NumBytes> &) {
340 char Buffer[NumBytes];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAsmBackend.cpp1042 unsigned NumBytes = getFixupKindNumBytes(Kind); local
1049 assert(Offset + NumBytes <= Data.size() && "Invalid fixup offset!");
1056 assert(NumBytes <= FullSizeBytes && "Invalid fixup size!");
1062 for (unsigned i = 0; i != NumBytes; ++i) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.h120 MachineBasicBlock::iterator InsertPt, unsigned NumBytes) const;
H A DHexagonLoopIdiomRecognition.cpp2154 Value *NumBytes = Expander.expandCodeFor(NumBytesS, IntPtrTy, ExpPt); local
2155 if (Instruction *In = dyn_cast<Instruction>(NumBytes))
2157 NumBytes = Simp;
2163 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes)) {
2210 Value *CmpD = Builder.CreateICmpSLE(NumBytes, Dist);
2215 Type *Ty = NumBytes->getType();
2217 Value *CmpB = Builder.CreateICmpULT(Thr, NumBytes);
2279 StoreBasePtr, SI->getAlign(), LoadBasePtr, LI->getAlign(), NumBytes);
2283 LI->getAlign(), NumBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCObjectStreamer.h178 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h723 Register BaseReg, int NumBytes,
730 Register BaseReg, int NumBytes,
736 Register BaseReg, int NumBytes,
743 /// NumBytes. This can save a few bytes per function in code-size, but
748 unsigned NumBytes);
H A DARMFastISel.cpp226 unsigned &NumBytes,
231 unsigned &NumBytes, bool isVarArg);
1880 unsigned &NumBytes,
1930 NumBytes = CCInfo.getNextStackOffset();
1936 .addImm(NumBytes).addImm(0));
2023 unsigned &NumBytes, bool isVarArg) {
2028 .addImm(NumBytes).addImm(0));
2249 unsigned NumBytes; local
2251 RegArgs, CC, NumBytes, false))
2282 if (!FinishCall(RetVT, UsedRegs, I, CC, NumBytes, fals
1874 ProcessCallArgs(SmallVectorImpl<Value*> &Args, SmallVectorImpl<Register> &ArgRegs, SmallVectorImpl<MVT> &ArgVTs, SmallVectorImpl<ISD::ArgFlagsTy> &ArgFlags, SmallVectorImpl<Register> &RegArgs, CallingConv::ID CC, unsigned &NumBytes, bool isVarArg) argument
2021 FinishCall(MVT RetVT, SmallVectorImpl<Register> &UsedRegs, const Instruction *I, CallingConv::ID CC, unsigned &NumBytes, bool isVarArg) argument
2380 unsigned NumBytes; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FrameLowering.h139 const DebugLoc &DL, int64_t NumBytes, bool InEpilogue) const;
H A DX86MCInstLower.cpp98 // Emit a minimal sequence of nops spanning NumBytes bytes.
99 static void emitX86Nops(MCStreamer &OS, unsigned NumBytes,
1099 /// Emit the largest nop instruction smaller than or equal to \p NumBytes
1101 static unsigned emitNop(MCStreamer &OS, unsigned NumBytes, argument
1104 NumBytes = std::min(NumBytes, maxLongNopLength(Subtarget));
1111 switch (NumBytes) {
1170 unsigned NumPrefixes = std::min(NumBytes - NopSize, 5U);
1195 assert(NopSize <= NumBytes && "We overemitted?");
1200 static void emitX86Nops(MCStreamer &OS, unsigned NumBytes, argument
1440 unsigned NumBytes = opers.getNumPatchBytes(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp953 Value *NumBytes =
958 NewCall = Builder.CreateMemSet(BasePtr, SplatValue, NumBytes,
978 NewCall = Builder.CreateCall(MSP, {BasePtr, PatternPtr, NumBytes});
1117 Value *NumBytes = local
1119 EVC.add(NumBytes);
1127 LI->getAlign(), NumBytes);
1147 StoreBasePtr, StoreAlign, LoadBasePtr, LoadAlign, NumBytes,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp246 unsigned &NumBytes);
247 bool finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes);
1139 unsigned &NumBytes) {
1145 NumBytes = CCInfo.getNextStackOffset();
1147 if (NumBytes < 16)
1148 NumBytes = 16;
1278 unsigned NumBytes) {
1545 unsigned NumBytes; local
1546 if (!processCallArgs(CLI, OutVTs, NumBytes))
1584 return finishCall(CLI, RetVT, NumBytes);
1137 processCallArgs(CallLoweringInfo &CLI, SmallVectorImpl<MVT> &OutVTs, unsigned &NumBytes) argument
1277 finishCall(CallLoweringInfo &CLI, MVT RetVT, unsigned NumBytes) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCStreamer.cpp199 /// Emit NumBytes bytes worth of the value specified by FillValue.
201 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { argument
202 emitFill(*MCConstantExpr::create(NumBytes, getContext()), FillValue);
206 void MCStreamer::emitZeros(uint64_t NumBytes) { emitFill(NumBytes, 0); } argument
1096 void MCStreamer::emitFill(const MCExpr &NumBytes, uint64_t Value, SMLoc Loc) {} argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h274 /// Skip over \p NumBytes bytes.
281 bool skipOver(unsigned NumBytes);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp953 unsigned NumBytes = Opers.getNumPatchBytes(); local
954 assert(NumBytes >= EncodedBytes &&
956 assert((NumBytes - EncodedBytes) % 4 == 0 &&
958 for (unsigned i = EncodedBytes; i < NumBytes; i += 4)

Completed in 400 milliseconds

12345