Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Disel.cpp703 MIRPtrType *pointerType = static_cast<MIRPtrType *>(type); in GetFieldIdAndMirTypeFromMirNode() local
704 DEBUG_ASSERT(pointerType != nullptr, "expect a pointer type at iread node"); in GetFieldIdAndMirTypeFromMirNode()
705 mirType = GlobalTables::GetTypeTable().GetTypeFromTyIdx(pointerType->GetPointedTyIdx()); in GetFieldIdAndMirTypeFromMirNode()
727 MIRPtrType *pointerType = nullptr; in GetFieldIdAndMirTypeFromMirNode() local
734 pointerType = static_cast<MIRPtrType *>(addrMirType); in GetFieldIdAndMirTypeFromMirNode()
737 pointerType = static_cast<MIRPtrType *>(iassignMirType); in GetFieldIdAndMirTypeFromMirNode()
739 mirType = GlobalTables::GetTypeTable().GetTypeFromTyIdx(pointerType->GetPointedTyIdx()); in GetFieldIdAndMirTypeFromMirNode()
Dcgfunc.cpp40 auto *pointerType = static_cast<MIRPtrType *>(type); in GetMemRWNodeBaseInfo() local
41 mirType = GlobalTables::GetTypeTable().GetTypeFromTyIdx(pointerType->GetPointedTyIdx()); in GetMemRWNodeBaseInfo()
64 MIRPtrType *pointerType = nullptr; in GetMemRWNodeBaseInfo() local
71 pointerType = static_cast<MIRPtrType *>(addrMirType); in GetMemRWNodeBaseInfo()
74 pointerType = static_cast<MIRPtrType *>(iassignMirType); in GetMemRWNodeBaseInfo()
76 mirType = GlobalTables::GetTypeTable().GetTypeFromTyIdx(pointerType->GetPointedTyIdx()); in GetMemRWNodeBaseInfo()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_cgfunc.cpp1856 static MIRType *GetPointedToType(const MIRPtrType &pointerType) in GetPointedToType() argument
1858 MIRType *aType = GlobalTables::GetTypeTable().GetTypeFromTyIdx(pointerType.GetPointedTyIdx()); in GetPointedToType()
1873 …MIRPtrType *pointerType = static_cast<MIRPtrType *>(GlobalTables::GetTypeTable().GetTypeFromTyIdx(… in SelectIassign() local
1874 DEBUG_ASSERT(pointerType != nullptr, "expect a pointer type at iassign node"); in SelectIassign()
1880 …MIRType *pointedTy = GlobalTables::GetTypeTable().GetTypeFromTyIdx(pointerType->GetPointedTyIdx()); in SelectIassign()
1892 pointedType = GetPointedToType(*pointerType); in SelectIassign()
2842 MIRPtrType *pointerType = static_cast<MIRPtrType *>(type); in SelectIread() local
2843 DEBUG_ASSERT(pointerType != nullptr, "expect a pointer type at iread node"); in SelectIread()
2849 …MIRType *pointedTy = GlobalTables::GetTypeTable().GetTypeFromTyIdx(pointerType->GetPointedTyIdx()); in SelectIread()
2862 pointedType = GetPointedToType(*pointerType); in SelectIread()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dlower.cpp3031 … MIRType *pointerType = beCommon.BeGetOrCreatePointerType(*GlobalTables::GetTypeTable().GetVoid()); in LowerGCMalloc() local
3032 classSym = mirBuilder->CreateGlobalDecl(classInfoName, *pointerType); in LowerGCMalloc()