Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/verification/cflow/
Dcflow_info.cpp47 [[maybe_unused]] auto tgt) -> std::optional<VerificationStatus> { in FillCodeMaps()
103 [[maybe_unused]] auto tgt) -> std::optional<VerificationStatus> { in ProcessCatchBlocks()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_nodes.h104 BaseNode(const Opcode o, const PrimType typ, uint8 numOpr) in BaseNode()
238 UnaryNode(Opcode o, PrimType typ) : BaseNode(o, typ, 1) {} in UnaryNode()
240 UnaryNode(Opcode o, PrimType typ, BaseNode *expr) : BaseNode(o, typ, 1), uOpnd(expr) {} in UnaryNode()
296 TypeCvtNode(Opcode o, PrimType typ) : UnaryNode(o, typ) {} in TypeCvtNode()
298 TypeCvtNode(Opcode o, PrimType typ, PrimType fromtyp, BaseNode *expr) in TypeCvtNode()
341 explicit RetypeNode(PrimType typ) : TypeCvtNode(OP_retype, typ) {} in RetypeNode()
343 RetypeNode(PrimType typ, PrimType fromtyp, TyIdx idx, BaseNode *expr) in RetypeNode()
398 ExtractbitsNode(Opcode o, PrimType typ) : UnaryNode(o, typ) {} in ExtractbitsNode()
400 ExtractbitsNode(Opcode o, PrimType typ, uint8 offset, uint8 size) in ExtractbitsNode()
405 ExtractbitsNode(Opcode o, PrimType typ, uint8 offset, uint8 size, BaseNode *expr) in ExtractbitsNode()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dbin_func_import.cpp53 void BinaryMplImport::ImportBaseNode(Opcode &o, PrimType &typ) in ImportBaseNode()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/ad/
Dmad.h100 bool IsEqual(maple::uint32 typ) const in IsEqual()
/arkcompiler/runtime_core/static_core/libpandafile/tests/
Dfile_test.cpp257 const auto typ = a.second->GetItemType(); in TEST() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dssa_mir_nodes.h545 SSANode(Opcode op, PrimType typ, uint8 numOpr) : BaseNode(op, typ, numOpr) {} in SSANode()
/arkcompiler/runtime_core/static_core/static_linker/
Dlinker_context.cpp515 auto typ = TypeFromOld(ff->GetTypeItem()); in MergeForeignFieldCreate() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Ddeps.h77 …DepLink(DepNode &fromNode, DepNode &toNode, DepType typ) : from(fromNode), to(toNode), depType(typ… in DepLink()