Home
last modified time | relevance | path

Searched refs:GetIntValue (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dtype_literal_extractor.h46 inline uint32_t GetIntValue(const uint32_t index) const in GetIntValue() function
74 uint32_t value = GetIntValue(numIndex + i); in EnumerateElements()
89 uint32_t key = GetIntValue(keyIndex); in EnumerateTypesWithIntKey()
90 uint32_t value = GetIntValue(valueIndex); in EnumerateTypesWithIntKey()
106 uint32_t value = GetIntValue(valueIndex); in EnumerateProperties()
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type_parser.cpp184 uint32_t length = typeLiteralExtractor->GetIntValue(NUM_INDEX_SIG_INDEX); in ParseIndexSigType()
193 uint32_t oriTypeId = typeLiteralExtractor->GetIntValue(DEFAULT_INDEX); in ParseIndexSigType()
276 uint32_t numFields = typeLiteralExtractor->GetIntValue(numNonStaticFieldsIndex); in ParseClassType()
282 uint32_t numNonStatic = typeLiteralExtractor->GetIntValue(numNonStaticMethodsIndex); in ParseClassType()
289 uint32_t numStaticFields = typeLiteralExtractor->GetIntValue(numStaticFieldsIndex); in ParseClassType()
290 uint32_t numStaticMethods = typeLiteralExtractor->GetIntValue(numStaticMethodsIndex); in ParseClassType()
307 uint32_t classTypeId = typeLiteralExtractor->GetIntValue(DEFAULT_INDEX); in ParseClassInstanceType()
323 … uint32_t numExtends = typeLiteralExtractor->GetIntValue(InterfaceLiteralInfo::NUM_EXTENDS_INDEX); in ParseInterfaceType()
333 uint32_t numFields = typeLiteralExtractor->GetIntValue(numFieldsIndex); in ParseInterfaceType()
334 uint32_t numMethods = typeLiteralExtractor->GetIntValue(numMethodsIndex); in ParseInterfaceType()
[all …]
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_builder.cpp310 auto val = bit_cast<float>(static_cast<uint32_t>(const_inst->GetIntValue())); in SplitConstant()
313 auto val = bit_cast<double, uint64_t>(const_inst->GetIntValue()); in SplitConstant()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.cpp337 … new_cnst = targetGraph->CreateInstConstant(static_cast<int32_t>(GetIntValue()), is_support_int32); in Clone()
340 new_cnst = targetGraph->CreateInstConstant(GetIntValue(), is_support_int32); in Clone()
Dinst.h2047 uint64_t GetIntValue() const in GetIntValue() function
2131 return GetType() == DataType::INT64 && (GetIntValue() == 0 || GetIntValue() == 1); in IsBoolConst()
2289 …nst->IsConst() && inst->GetType() == DataType::INT64 && inst->CastToConstant()->GetIntValue() == 0; in IsZeroConstant()
Ddump.cpp263 (*out) << "0x" << std::hex << GetIntValue() << std::dec; in DumpInputs()
/arkcompiler/runtime_core/compiler/tests/
Dinst_test.cpp200 ASSERT_EQ(const1->GetIntValue(), val1); in TEST_F()
258 ASSERT_EQ(const1->GetIntValue(), val1); in TEST_F()
Dcompiler_inst_test.cpp529 EXPECT_EQ(const1->GetIntValue(), val1); in __anon1be7da800c02()
/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.cpp371 return coretypes::TaggedValue(static_cast<int32_t>(const_inst->GetIntValue())); in IsEcmaConstTemplate()
528 enc->result_.emplace_back(pandasm::Create_LDAI(input->GetIntValue())); in VisitCastValueToAnyType()