Home
last modified time | relevance | path

Searched refs:kOperandNumBinary (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dtypes_def.h160 constexpr uint8 kOperandNumBinary = 2; variable
Dmir_nodes.h677 CHECK_FATAL(i < kOperandNumBinary, "Invalid operand idx in BinaryOpnds"); in GetBOpnd()
683 CHECK_FATAL(i < kOperandNumBinary, "Invalid operand idx in BinaryOpnds"); in SetBOpnd()
690 BaseNode *bOpnd[kOperandNumBinary];
695 explicit BinaryNode(Opcode o) : BaseNode(o, kOperandNumBinary) {} in BinaryNode()
697 BinaryNode(Opcode o, PrimType typ) : BaseNode(o, typ, kOperandNumBinary) {} in BinaryNode()
699 … BinaryNode(Opcode o, PrimType typ, BaseNode *l, BaseNode *r) : BaseNode(o, typ, kOperandNumBinary) in BinaryNode()
737 DEBUG_ASSERT(i < kOperandNumBinary, "invalid operand idx in BinaryNode"); in Opnd()
744 return kOperandNumBinary; in NumOpnds()
1888 BaseNodeT::SetNumOpnds(kOperandNumBinary); in IassignNode()
1923 return kOperandNumBinary; in NumOpnds()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dme_ir.h510 explicit MePhiNode(MapleAllocator *alloc) : opnds(kOperandNumBinary, nullptr, alloc->Adapter()) in MePhiNode()
517 : lhs(expr), opnds(kOperandNumBinary, nullptr, alloc->Adapter()) in MePhiNode()
2236 return kOperandNumBinary; in NumMeStmtOpnds()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dlower.cpp2237 CHECK_FATAL(arrayNode.GetNopndSize() == kOperandNumBinary, "unexpected nOpnd size"); in ProcessArrayExpr()
2969 CHECK_FATAL(nStmt.NumOpnds() == kOperandNumBinary, "wrong args for syncenter"); in LowerSyncEnterSyncExit()