Searched refs:elemConst (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | emit.cpp | 759 void Emitter::EmitAddrofFuncConst(const MIRSymbol &mirSymbol, MIRConst &elemConst, size_t idx) in EmitAsmLabel() argument 762 MIRAddroffuncConst &funcAddr = static_cast<MIRAddroffuncConst &>(elemConst); in EmitAsmLabel() 893 void Emitter::EmitAddrofSymbolConst(const MIRSymbol &mirSymbol, MIRConst &elemConst, size_t idx) in EmitAsmLabel() argument 896 MIRAddrofConst &symAddr = static_cast<MIRAddrofConst &>(elemConst); in EmitAsmLabel() 1249 MIRConst *elemConst = aggConst.GetConstVecItem(idx); in EmitAsmLabel() local 1250 DEBUG_ASSERT(elemConst != nullptr, "null ptr check"); in EmitAsmLabel() 1253 MIRIntConst *intConst = safe_cast<MIRIntConst>(elemConst); in EmitAsmLabel() 1299 uint32 index = static_cast<uint32>((safe_cast<MIRIntConst>(elemConst))->GetExtValue()) & 0xFFFFFFFF; in EmitAsmLabel() 1315 ASSERT_NOT_NULL(elemConst); in EmitAsmLabel() 1316 elemConst in EmitAsmLabel() 1542 MIRConst *elemConst = aggConst.GetConstVecItem(i); EmitAsmLabel() local 1601 MIRConst *elemConst = arrayCt.GetConstVecItem(i); EmitAsmLabel() local 1892 MIRConst *elemConst = aggConst->GetConstVecItem(size - 1); EmitAsmLabel() local 2576 MIRConst *elemConst = aggConst->GetConstVecItem(i); EmitAsmLabel() local [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | emit.h | 196 void EmitAddrofFuncConst(const MIRSymbol &mirSymbol, MIRConst &elemConst, size_t idx); 197 void EmitAddrofSymbolConst(const MIRSymbol &mirSymbol, MIRConst &elemConst, size_t idx);
|
H A D | ifile.h | 449 MIRConst &elemConst; member
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
H A D | x64_emitter.cpp | 1568 MIRConst *elemConst = arrayCt.GetConstVecItem(i); in EmitArray() local 1569 if (IsPrimitiveScalar(elemConst->GetType().GetPrimType())) { in EmitArray() 1570 valueSize += EmitSingleElement(*elemConst, belongsToDataSec); in EmitArray() 1571 } else if (elemConst->GetType().GetKind() == kTypeArray) { in EmitArray() 1572 valueSize += EmitArray(*elemConst, cg, belongsToDataSec); in EmitArray() 1573 } else if (elemConst->GetKind() == kConstAddrofFunc) { in EmitArray() 1574 valueSize += EmitSingleElement(*elemConst, belongsToDataSec); in EmitArray()
|
Completed in 7 milliseconds