/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
H A D | Locked.cpp | 278 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F() 348 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F()
|
H A D | GPRArith.cpp | 57 __ setcc(Cond::Br_##C, ByteRegister(GPRRegister::Encoded_Reg_##Dest)); \ in TEST_F() 58 __ setcc(Cond::Br_##C, dwordAddress(T0)); \ in TEST_F() 1753 __ setcc(Cond::Br_b, ByteRegister::Encoded_8_Reg_al); \ in TEST_F() 1808 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F() 1832 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/ |
H A D | Locked.cpp | 305 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F() 375 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F()
|
H A D | GPRArith.cpp | 44 __ setcc(Cond::Br_##C, Encoded_Bytereg_##Dest()); \ in TEST_F() 45 __ setcc(Cond::Br_##C, dwordAddress(T0)); \ in TEST_F() 1761 __ setcc(Cond::Br_b, ByteRegister::Encoded_8_Reg_al); \ in TEST_F() 1822 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F() 1845 __ setcc(Cond::Br_e, dwordAddress(ZeroFlag)); \ in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerX8632.h | 474 void setcc(BrCond condition, ByteRegister dst); 475 void setcc(BrCond condition, const AsmAddress &address);
|
H A D | IceAssemblerX8664.h | 491 void setcc(BrCond condition, ByteRegister dst); 492 void setcc(BrCond condition, const AsmAddress &address);
|
H A D | IceInstX8632.cpp | 2705 Asm->setcc(Condition, 2708 Asm->setcc(Condition, AsmAddress(this->getDest(), Target)); 2716 Str << "setcc." << InstBrAttributes[Condition].DisplayString << " ";
|
H A D | IceInstX8664.cpp | 2632 Asm->setcc(Condition, 2635 Asm->setcc(Condition, AsmAddress(this->getDest(), Target)); 2643 Str << "setcc." << InstBrAttributes[Condition].DisplayString << " ";
|
H A D | IceAssemblerX8632.cpp | 265 void AssemblerX8632::setcc(BrCond condition, ByteRegister dst) { in setcc() function in Ice::X8632::AssemblerX8632 272 void AssemblerX8632::setcc(BrCond condition, const AsmAddress &address) { in setcc() function in Ice::X8632::AssemblerX8632
|
H A D | IceAssemblerX8664.cpp | 245 void AssemblerX8664::setcc(BrCond condition, ByteRegister dst) { in setcc() function in Ice::X8664::AssemblerX8664 253 void AssemblerX8664::setcc(BrCond condition, const AsmAddress &address) { in setcc() function in Ice::X8664::AssemblerX8664
|
/third_party/node/deps/v8/src/wasm/baseline/x64/ |
H A D | liftoff-assembler-x64.h | 2180 setcc(equal, dst); in emit_i32_eqz() 2189 setcc(cond, dst); in emit_i32_set_cond() 2195 setcc(equal, dst); in emit_i64_eqz() 2204 setcc(cond, dst); in emit_i64_set_cond() 2227 assm->setcc(cond, dst); in EmitFloatSetCond() 2367 assm->setcc(not_equal, dst.gp()); in EmitAnyTrue() 2382 assm->setcc(equal, dst.gp()); in EmitAllTrue()
|
/third_party/node/deps/v8/src/wasm/baseline/ia32/ |
H A D | liftoff-assembler-ia32.h | 2509 assm->setcc(cond, tmp_byte_reg); in setcc_32_no_spill() 2577 Label setcc; in emit_i64_set_cond() local 2579 // Compare high word first. If it differs, use if for the setcc. If it's in emit_i64_set_cond() 2580 // equal, compare the low word and use that for setcc. in emit_i64_set_cond() 2582 j(not_equal, &setcc, Label::kNear); in emit_i64_set_cond() 2586 // word, emit a separete setcc sequence for the low word. in emit_i64_set_cond() 2590 bind(&setcc); in emit_i64_set_cond()
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
H A D | code-generator-x64.cc | 989 __ setcc(equal, dst); \ 1190 // Transform setcc + movzxbl into xorl + setcc to avoid register stall and in AssembleArchInstruction() 4171 __ setcc(not_equal, dst); in AssembleArchInstruction() 4556 __ setcc(FlagsConditionToCondition(condition), reg); in AssembleArchBoolean()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.h | 851 void setcc(Condition cc, Register reg);
|
H A D | assembler-ia32.cc | 2140 void Assembler::setcc(Condition cc, Register reg) { in setcc() function in v8::internal::Assembler
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
H A D | code-generator-ia32.cc | 3836 // setcc for byte registers (al, bl, cl, dl). in AssembleArchBoolean() 3837 __ setcc(cc, reg); in AssembleArchBoolean()
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | assembler-x64.cc | 2148 void Assembler::setcc(Condition cc, Register reg) { in setcc() function in v8::internal::Assembler
|
H A D | assembler-x64.h | 772 void setcc(Condition cc, Register reg);
|