MCPcopy Create free account
hub / github.com/Inori/GPCS4 / opLogicalAnd

Method opLogicalAnd

GPCS4/Graphics/SpirV/SpirvModule.cpp:2613–2625  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2611
2612
2613 uint32_t SpirvModule::opLogicalAnd(
2614 uint32_t resultType,
2615 uint32_t operand1,
2616 uint32_t operand2) {
2617 uint32_t resultId = this->allocateId();
2618
2619 m_code.putIns (spv::OpLogicalAnd, 5);
2620 m_code.putWord(resultType);
2621 m_code.putWord(resultId);
2622 m_code.putWord(operand1);
2623 m_code.putWord(operand2);
2624 return resultId;
2625 }
2626
2627
2628 uint32_t SpirvModule::opLogicalOr(

Callers 2

updateZflagMethod · 0.80
emitCsLaneReadMethod · 0.80

Calls 3

allocateIdMethod · 0.95
putInsMethod · 0.80
putWordMethod · 0.80

Tested by

no test coverage detected