Home
last modified time | relevance | path

Searched defs:BaseNodeT (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dcmpl.h173 struct BaseNodeT { // 4B struct
174 Opcode op;
175 PrimType ptyp;
176 uint8 typeFlag; // a flag to speed up type related operations in the VM
177 uint8 numOpnds; // only used for N-ary operators, switch and rangegoto
179 virtual size_t NumOpnds() const in NumOpnds()
187 virtual uint8 GetNumOpnds() const in GetNumOpnds()
191 virtual void SetNumOpnds(uint8 num) in SetNumOpnds()
216 BaseNodeT() : op(OP_undef), ptyp(kPtyInvalid), typeFlag(0), numOpnds(0) {} in BaseNodeT() argument