Searched refs:ByteSized (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/llvm/unittests/Target/AArch64/ |
D | DecomposeStackOffsetTest.cpp | 22 int64_t ByteSized, VLSized, PLSized; in TEST() local 23 AArch64InstrInfo::decomposeStackOffsetForFrameOffsets(A + B + C, ByteSized, PLSized, in TEST() 25 EXPECT_EQ(12, ByteSized); in TEST() 32 AArch64InstrInfo::decomposeStackOffsetForFrameOffsets(C + D, ByteSized, PLSized, VLSized); in TEST() 33 EXPECT_EQ(0, ByteSized); in TEST() 39 AArch64InstrInfo::decomposeStackOffsetForFrameOffsets(E + F, ByteSized, PLSized, VLSized); in TEST() 40 EXPECT_EQ(0, ByteSized); in TEST() 49 AArch64InstrInfo::decomposeStackOffsetForFrameOffsets(G + H, ByteSized, PLSized, VLSized); in TEST() 50 EXPECT_EQ(0, ByteSized); in TEST()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceAssemblerX86BaseImpl.h | 344 bool ByteSized = isByteSizedType(SrcTy); in movzx() local 345 assert(ByteSized || SrcTy == IceType_i16); in movzx() 348 emitUint8(ByteSized ? 0xB6 : 0xB7); in movzx() 363 bool ByteSized = isByteSizedType(SrcTy); in movzx() local 364 assert(ByteSized || SrcTy == IceType_i16); in movzx() 368 emitUint8(ByteSized ? 0xB6 : 0xB7); in movzx() 376 bool ByteSized = isByteSizedType(SrcTy); in movsx() local 378 if (ByteSized || SrcTy == IceType_i16) { in movsx() 380 emitUint8(ByteSized ? 0xBE : 0xBF); in movsx() 392 bool ByteSized = isByteSizedType(SrcTy); in movsx() local [all …]
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 300 int64_t &ByteSized,
|
D | AArch64InstrInfo.cpp | 3433 const StackOffset &Offset, int64_t &ByteSized, int64_t &VGSized) { in decomposeStackOffsetForDwarfOffsets() argument 3444 ByteSized = Offset.getFixed(); in decomposeStackOffsetForDwarfOffsets()
|