Home
last modified time | relevance | path

Searched refs:SizeInBytes (Results 1 – 13 of 13) sorted by relevance

/external/v8/src/arm64/
Dmacro-assembler-arm64.cc873 int size = src0.SizeInBytes(); in Push()
887 int size = src0.SizeInBytes(); in Push()
904 int size = dst0.SizeInBytes(); in Pop()
912 int size = src0.SizeInBytes() + src1.SizeInBytes(); in Push()
918 str(src0, MemOperand(StackPointer(), src1.SizeInBytes())); in Push()
942 masm_->PushHelper(batch_index, batch[0].SizeInBytes(), in PushQueued()
965 masm_->PopHelper(batch_index, batch[0].SizeInBytes(), in PopQueued()
1013 int size = src.SizeInBytes(); in PushMultipleTimes()
1051 PushPreamble(Operand(count, UXTW, WhichPowerOf2(src.SizeInBytes()))); in PushMultipleTimes()
1065 PushHelper(1, src.SizeInBytes(), src, NoReg, NoReg, NoReg); in PushMultipleTimes()
[all …]
Dassembler-arm64-inl.h63 inline int CPURegister::SizeInBytes() const { in SizeInBytes() function
Dassembler-arm64.h60 int SizeInBytes() const;
Dmacro-assembler-arm64.h650 size_ += rt.SizeInBytes(); in Queue()
/external/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp399 uint64_t SizeInBytes = in getAllocaSizeInBytes() local
401 return SizeInBytes; in getAllocaSizeInBytes()
1285 uint64_t SizeInBytes = DL.getTypeAllocSize(Ty); in InstrumentGlobals() local
1290 MinRZ, std::min(kMaxGlobalRedzone, (SizeInBytes / MinRZ / 4) * MinRZ)); in InstrumentGlobals()
1293 if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ); in InstrumentGlobals()
1294 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0); in InstrumentGlobals()
1331 ConstantInt::get(IntptrTy, SizeInBytes), in InstrumentGlobals()
1332 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize), in InstrumentGlobals()
/external/llvm/lib/Transforms/Scalar/
DLoopIdiomRecognize.cpp806 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue(); in processLoopMemSet() local
807 if ((SizeInBytes >> 32) != 0) in processLoopMemSet()
819 return processLoopStridedStore(Pointer, (unsigned)SizeInBytes, in processLoopMemSet()
/external/vixl/test/
Dtest-simulator-a64.cc225 __ Str(fd, MemOperand(out, fd.SizeInBytes(), PostIndex)); in Test1Op_Helper()
336 __ Str(fd, MemOperand(out, fd.SizeInBytes(), PostIndex)); in Test2Op_Helper()
462 __ Str(fd, MemOperand(out, fd.SizeInBytes(), PostIndex)); in Test3Op_Helper()
832 __ Str(rd, MemOperand(out, rd.SizeInBytes(), PostIndex)); in TestFPToFixed_Helper()
880 __ Str(rd, MemOperand(out, rd.SizeInBytes(), PostIndex)); in TestFPToInt_Helper()
1242 __ Str(vd, MemOperand(out, vd.SizeInBytes(), PostIndex)); in Test1OpNEON_Helper()
1436 __ Str(vd, MemOperand(out, vd.SizeInBytes(), PostIndex)); in Test1OpAcrossNEON_Helper()
1658 __ Str(vres, MemOperand(out, vd.SizeInBytes(), PostIndex)); in Test2OpNEON_Helper()
1886 __ Str(vres, MemOperand(out, vd.SizeInBytes(), PostIndex)); in TestByElementNEON_Helper()
2106 __ Str(vd, MemOperand(out, vd.SizeInBytes(), PostIndex)); in Test2OpImmNEON_Helper()
[all …]
/external/vixl/src/vixl/a64/
Dmacro-assembler-a64.cc1617 int size = src0.SizeInBytes(); in Push()
1634 int size = dst0.SizeInBytes(); in Pop()
1709 int size = src.SizeInBytes(); in PushMultipleTimes()
1742 VIXL_ASSERT(size == src0.SizeInBytes()); in PushHelper()
1784 VIXL_ASSERT(size == dst0.SizeInBytes()); in PopHelper()
Ddebugger-a64.cc1334 target_size = reg.SizeInBytes(); in Build()
1337 target_size = fpreg.SizeInBytes(); in Build()
Dassembler-a64.cc1650 VIXL_ASSERT(literal->size() == static_cast<size_t>(rt.SizeInBytes())); in ldr()
1933 int offset = vt.SizeInBytes(); in LoadStoreStructVerify()
3851 VIXL_ASSERT(vn.SizeInBytes() >= 4); in mov()
5300 switch (rt.SizeInBytes()) { in StorePairOpFor()
5327 switch (rt.SizeInBytes()) { in StorePairNonTemporalOpFor()
5351 switch (rt.SizeInBytes()) { in LoadLiteralOpFor()
Dassembler-a64.h92 int SizeInBytes() const { in SizeInBytes() function
347 return SizeInBytes() / lanes_; in LaneSizeInBytes()
4062 switch (vd.SizeInBytes()) { in SFormat()
/external/llvm/lib/IR/
DDIBuilder.cpp620 unsigned SizeInBytes) { in createBitPieceExpression() argument
621 uint64_t Addr[] = {dwarf::DW_OP_bit_piece, OffsetInBytes, SizeInBytes}; in createBitPieceExpression()
/external/clang/lib/CodeGen/
DTargetInfo.cpp2812 uint64_t SizeInBytes = (CGF.getContext().getTypeSize(Ty) + 7) / 8; in EmitVAArgFromMemory() local
2814 llvm::ConstantInt::get(CGF.Int32Ty, (SizeInBytes + 7) & ~7); in EmitVAArgFromMemory()
3756 unsigned SizeInBytes = CGF.getContext().getTypeSize(Ty) / 8; in EmitVAArg() local
3764 SizeInBytes = 16; in EmitVAArg()
3767 unsigned Offset = llvm::RoundUpToAlignment(SizeInBytes, 8); in EmitVAArg()
3807 if (SizeInBytes < 8 && CGF.CGM.getDataLayout().isBigEndian()) { in EmitVAArg()
3809 AddrAsInt = Builder.CreateAdd(AddrAsInt, Builder.getInt64(8 - SizeInBytes)); in EmitVAArg()