/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | stack_walker_test.cpp | 178 HOOK_ASSERT(reg.GetLong() == 27L, return false); in TEST_F() 191 HOOK_ASSERT(reg.GetLong() == 27L, return false); in TEST_F() 202 HOOK_ASSERT(reg.GetLong() == 27L, return true); in TEST_F() 212 HOOK_ASSERT(reg.GetLong() == bit_cast<int64_t>(FRAME_VALUES[0]), return true); in TEST_F() 222 HOOK_ASSERT(reg.GetLong() == bit_cast<int64_t>(FRAME_VALUES[1]), return true); in TEST_F() 232 HOOK_ASSERT(reg.GetLong() == bit_cast<int64_t>(FRAME_VALUES[2U]), return true); in TEST_F() 331 HOOK_ASSERT(regIdx == reg.GetLong(), return false); in FirstRunModifyVregs() 349 HOOK_ASSERT(reg.GetLong() == (regInfo.GetIndex() + 100000000000L), return false); in CheckVregs()
|
H A D | frame_test.cpp | 79 EXPECT_EQ(frameHandler.GetVReg(0).GetLong(), v64); in TEST_F() 88 EXPECT_EQ(frameHandler.GetVReg(0).GetLong(), v64); in TEST_F()
|
H A D | interpreter_test.cpp | 239 EXPECT_EQ(frameHandler.GetVReg(0).GetLong(), IMM4_MAX); in TEST_F() 242 EXPECT_EQ(frameHandler.GetVReg(1).GetLong(), IMM8_MAX); in TEST_F() 245 EXPECT_EQ(frameHandler.GetVReg(2U).GetLong(), IMM16_MAX); in TEST_F() 248 EXPECT_EQ(frameHandler.GetVReg(3U).GetLong(), IMM32_MAX); in TEST_F() 251 EXPECT_EQ(frameHandler.GetVReg(4U).GetLong(), IMM64_MAX); in TEST_F() 267 EXPECT_EQ(frameHandler.GetVReg(V4_MAX - 2U).GetLong(), IMM64_MAX - 4L); in TEST_F() 270 EXPECT_EQ(frameHandler.GetVReg(V16_MAX - 2U).GetLong(), IMM64_MAX - 5L); in TEST_F() 346 EXPECT_EQ(frameHandler.GetVReg(3U).GetLong(), IMM64_MAX); in TEST_F() 352 EXPECT_EQ(frameHandler.GetVReg(7U).GetLong(), IMM64_MAX - 2L); in TEST_F() 504 EXPECT_EQ(f->GetAccAsVReg().GetLong(), valu in TestFcmp() [all...] |
/arkcompiler/ets_frontend/ets2panda/lexer/token/ |
H A D | number.h | 123 int64_t GetLong() const in GetLong() function in ark::es2panda::lexer::Number 187 return GetLong();
|
/arkcompiler/ets_frontend/ets2panda/ir/expressions/literals/ |
H A D | numberLiteral.cpp | 46 dumper->Add(number_.GetLong()); in Dump()
|
/arkcompiler/runtime_core/static_core/runtime/interpreter/ |
H A D | vregister.h | 135 ALWAYS_INLINE inline int64_t GetLong() const in GetLong() function in ark::interpreter::VRegisterIface 329 ALWAYS_INLINE inline int64_t GetLong() const in GetLong() function in ark::interpreter::VRegisterRef 331 return payload_->GetLong(); in GetLong()
|
H A D | interpreter-inl.h | 239 this->GetAccAsVReg().SetPrimitive(this->GetFrame()->GetVReg(vs).GetLong()); in HandleLdaWide()
|
/arkcompiler/runtime_core/static_core/runtime/bridge/ |
H A D | bridge.cpp | 58 return reg.HasObject() ? static_cast<int64_t>(bit_cast<uintptr_t>(reg.GetReference())) : reg.GetLong(); in GetVRegValue()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | asm_info.h | 125 const MapleString &GetLong() const in GetLong() function in maplebe::AsmInfo
|
/arkcompiler/ets_frontend/ets2panda/ir/ |
H A D | astDump.cpp | 140 ss_ << number.GetLong(); in SerializeNumber()
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
H A D | recordLowering.cpp | 106 (number.IsLong() && keySet.insert(number.GetLong()).second) || in CheckDuplicateKey()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | stack_walker.cpp | 651 vreg.GetLong(); in DebugSingleFrameVerify() 734 os << std::dec << vreg.GetLong(); in DumpVRegs()
|
/arkcompiler/ets_frontend/ets2panda/ir/expressions/ |
H A D | memberExpression.cpp | 272 auto const value = number.GetLong(); in CheckArrayIndexValue()
|
/arkcompiler/ets_frontend/ets2panda/declgen_ets2ts/ |
H A D | declgenEts2Ts.cpp | 192 Out(std::to_string(number.GetLong())); in GenLiteral()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | method-inl.h | 161 return Value(aacVreg.GetLong()); in GetReturnValueFromAcc()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | debugger.cpp | 885 return reg.HasObject() ? reinterpret_cast<uintptr_t>(reg.GetReference()) : reg.GetLong(); in GetVRegValue()
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | ETSCompiler.cpp | 1279 etsg->LoadAccumulatorWideInt(expr, expr->Number().GetLong()); in Compile()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | emit.cpp | 285 (void)Emit(asmInfo->GetLong()); in EmitAsmLabel()
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | ETSAnalyzer.cpp | 1900 expr->SetTsType(checker->CreateLongType(expr->Number().GetLong())); in Check()
|