OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Movzx
(Results
1 - 6
of
6
) sorted by null
/external/swiftshader/third_party/subzero/src/
IceTargetLoweringX8664.cpp
460
auto *
Movzx
= _movzx(T64, T);
462
// This
movzx
is only needed when Mem does not need to be lea'd into a
463
// temporary. If an lea is going to be emitted, then eliding this
movzx
466
Movzx
->setMustKeep();
IceTargetLoweringX86Base.h
738
typename Traits::Insts::
Movzx
*_movzx(Variable *Dest, Operand *Src0) {
740
return Context.insert<typename Traits::Insts::
Movzx
>(Dest, Src0);
[
all
...]
IceInstX86Base.h
127
Movzx
,
624
// Movsx and
movzx
need both the source and dest type width letter to
[
all
...]
IceInstX86BaseImpl.h
[
all
...]
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
DataMov.cpp
176
TEST_F(AssemblerX8632Test,
Movzx
) {
181
__
movzx
(IceType_i8, GPRRegister::Encoded_Reg_##Dst, \
193
__
movzx
(IceType_i16, GPRRegister::Encoded_Reg_##Dst, \
206
__
movzx
(IceType_i8, GPRRegister::Encoded_Reg_##Dst, dwordAddress(T0)); \
219
__
movzx
(IceType_i16, GPRRegister::Encoded_Reg_##Dst, dwordAddress(T0)); \
[
all
...]
/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/
DataMov.cpp
292
TEST_F(AssemblerX8664Test,
Movzx
) {
303
__
movzx
(IceType_i##Size, Encoded_GPR_##Dst##d(), \
317
__
movzx
(IceType_i##Size, Encoded_GPR_##Dst##d(), dwordAddress(T0)); \
[
all
...]
Completed in 2179 milliseconds