Home
last modified time | relevance | path

Searched refs:ByteSized (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceAssemblerX8632.cpp350 bool ByteSized = isByteSizedType(SrcTy); in movzx() local
351 assert(ByteSized || SrcTy == IceType_i16); in movzx()
353 emitUint8(ByteSized ? 0xB6 : 0xB7); in movzx()
359 bool ByteSized = isByteSizedType(SrcTy); in movzx() local
360 assert(ByteSized || SrcTy == IceType_i16); in movzx()
362 emitUint8(ByteSized ? 0xB6 : 0xB7); in movzx()
368 bool ByteSized = isByteSizedType(SrcTy); in movsx() local
369 assert(ByteSized || SrcTy == IceType_i16); in movsx()
371 emitUint8(ByteSized ? 0xBE : 0xBF); in movsx()
377 bool ByteSized = isByteSizedType(SrcTy); in movsx() local
[all …]
DIceAssemblerX8664.cpp358 bool ByteSized = isByteSizedType(SrcTy); in movzx() local
359 assert(ByteSized || SrcTy == IceType_i16); in movzx()
362 emitUint8(ByteSized ? 0xB6 : 0xB7); in movzx()
375 bool ByteSized = isByteSizedType(SrcTy); in movzx() local
376 assert(ByteSized || SrcTy == IceType_i16); in movzx()
379 emitUint8(ByteSized ? 0xB6 : 0xB7); in movzx()
385 bool ByteSized = isByteSizedType(SrcTy); in movsx() local
387 if (ByteSized || SrcTy == IceType_i16) { in movsx()
389 emitUint8(ByteSized ? 0xBE : 0xBF); in movsx()
399 bool ByteSized = isByteSizedType(SrcTy); in movsx() local
[all …]