Home
last modified time | relevance | path

Searched full:at (Results 1 – 25 of 5283) sorted by relevance

12345678910>>...212

/arkcompiler/ets_frontend/es2panda/typescript/types/
DglobalTypesHolder.cpp5 * You may obtain a copy of the License at
75 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::NUMBER)); in GlobalNumberType()
80 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::ANY)); in GlobalAnyType()
85 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::STRING)); in GlobalStringType()
90 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::SYMBOL)); in GlobalSymbolType()
95 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::BOOLEAN)); in GlobalBooleanType()
100 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::VOID)); in GlobalVoidType()
105 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::NULL_ID)); in GlobalNullType()
110 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::UNDEFINED)); in GlobalUndefinedType()
115 return globalTypes_.at(static_cast<size_t>(GlobalTypeId::UNKNOWN)); in GlobalUnknownType()
[all …]
/arkcompiler/runtime_core/assembler/tests/
Dparser_test.cpp5 * You may obtain a copy of the License at
35 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].opcode, Opcode::MOV); in TEST()
36 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].regs[0], 1) << "1 expected"; in TEST()
37 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].regs[1], 2) << "2 expected"; in TEST()
52 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].label, "label") << "label expected"; in TEST()
53 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].set_label, true) << "true expected"; in TEST()
54 …ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].opcode, Opcode::INVALID) << "NONE expect… in TEST()
91 … ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].opcode, Opcode::ADDI) << "IMM expected"; in TEST()
92 …ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].imms[0], Ins::IType(int64_t(1))) << "1 e… in TEST()
107 … ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].opcode, Opcode::ADDI) << "IMM expected"; in TEST()
[all …]
/arkcompiler/runtime_core/runtime/
Dhandle_storage-inl.h5 * You may obtain a copy of the License at
57 // reserve at least one block for perf. in FreeHandles()
73 auto node = nodes_.at(i); in ZapFreedHandles()
78 node->at(j) = reinterpret_cast<T>(static_cast<uint64_t>(0)); in ZapFreedHandles()
93 auto node = nodes_.at(i); in UpdateHeapObject()
96 coretypes::TaggedValue obj(node->at(j)); in UpdateHeapObject()
117 auto node = nodes_.at(i); in VisitGCRoots()
120 coretypes::TaggedValue obj(node->at(j)); in VisitGCRoots()
141 auto node = nodes_.at(i); in UpdateHeapObject()
144 auto *obj = reinterpret_cast<ObjectHeader *>(node->at(j)); in UpdateHeapObject()
[all …]
Dglobal_handle_storage-inl.h5 * You may obtain a copy of the License at
47 globalNodes_->back()->at(count_).SetNext(nullptr); in NewGlobalHandle()
48 globalNodes_->back()->at(count_).SetObject(value); in NewGlobalHandle()
49 return globalNodes_->back()->at(count_++).GetObjectAddress(); in NewGlobalHandle()
87 coretypes::TaggedValue obj(block->at(index).GetObject()); in DealUpdateObject()
90 block->at(index).SetObject(value.GetRawData()); in DealUpdateObject()
102 auto block = globalNodes_->at(i); in UpdateHeapObject()
118 coretypes::TaggedValue value(block->at(index).GetObject()); in DealVisitGCRoots()
132 auto block = globalNodes_->at(i); in VisitGCRoots()
/arkcompiler/runtime_core/verification/util/tests/
Dshifted_vector_test.cpp5 * You may obtain a copy of the License at
33 shift_vec.at(1) = 8; in TEST_F()
34 EXPECT_EQ(shift_vec.at(0), 7); in TEST_F()
42 EXPECT_EQ(shift_vec.at(0), 7); in TEST_F()
45 EXPECT_EQ(shift_vec.at(4), 4); in TEST_F()
/arkcompiler/runtime_core/verification/util/
Dshifted_vector.h5 * You may obtain a copy of the License at
38 typename Base::reference at(int idx) in at() function
40 return Base::at(static_cast<typename Base::size_type>(idx + SHIFT)); in at()
42 typename Base::const_reference &at(int idx) const in at() function
44 return Base::at(static_cast<typename Base::size_type>(idx + SHIFT)); in at()
/arkcompiler/ets_runtime/test/aottest/exceptionhandler/
Dexpect_output.txt4 # You may obtain a copy of the License at
15 Exception at function foo: 7
16 Exception at function func_main_0: 9
/arkcompiler/runtime_core/runtime/mem/
Dtlab.cpp5 * You may obtain a copy of the License at
31 …LOG_TLAB_ALLOCATOR(DEBUG) << "Construct a new TLAB at addr " << std::hex << address << " with size… in TLAB()
42 …LOG_TLAB_ALLOCATOR(DEBUG) << "Fill a TLAB with buffer at addr " << std::hex << address << " with s… in Fill()
48 …LOG_TLAB_ALLOCATOR(DEBUG) << "Destroy a TLAB at addr " << std::hex << memory_start_addr_ << " with… in ~TLAB()
54 LOG_TLAB_ALLOCATOR(DEBUG) << "Destroy the TLAB at addr " << std::hex << this; in Destroy()
69 LOG_TLAB_ALLOCATOR(DEBUG) << "Alloc size = " << size << " at addr = " << ret; in Alloc()
Dframe_allocator-inl.h5 * You may obtain a copy of the License at
51 LOG_FRAME_ALLOCATOR(DEBUG) << "Free arena at addr " << std::hex << last_alloc_arena_; in ~FrameAllocator()
100 LOG_FRAME_ALLOCATOR(DEBUG) << "Allocated memory at addr " << std::hex << mem; in Alloc()
131 LOG_FRAME_ALLOCATOR(DEBUG) << "Free memory at addr " << std::hex << mem; in Free()
195 LOG_FRAME_ALLOCATOR(DEBUG) << "Free the arena at addr " << std::hex << arena_to_free; in FreeLastArena()
238 LOG_FRAME_ALLOCATOR(DEBUG) << "check InAllocator arena at addr " << std::hex << cur_arena; in Contains()
/arkcompiler/runtime_core/docs/
Ddebugger-vscode-communication.md18 * It's critical for VSCode to have a debug server initialized at allocated time so we establish a t…
20 * When the connection is established (if it is at the allocated time) test client disconnects and r…
21 * If connection was not established at the allocated time the `Can not launch debug server` error w…
Drationale-for-bytecode.md10 Before discussing bytecode per se, let's take a look at an over-simplified picture of a real
54 add ; remove two top-most values from the stack, add them and put the result at the top
55 ; at this point, the top of the stack contains arg1 + arg2
66 ; at this point, virtual register 0 contains arg1 + arg2
76 At the same time, to execute a stack-based addition we need to run 3 instructions compared to
82 if substituted by a stack-based analogue. At the same time, performance becomes 10%-40% worse
105 ; at this point, accumulator register contains arg1 + arg2
133 Let's take a closer look at `adda arg1, arg2`. Assume that arguments map to virtual registers on
/arkcompiler/ets_frontend/es2panda/test/hotreload/modify-class-1/
Dexpected.txt4 # You may obtain a copy of the License at
14 …ing UI Component, please only change one Component at a time and make sure the Component is placed…
/arkcompiler/ets_frontend/testTs/
Dtest-case.patch722 \ No newline at end of file
740 \ No newline at end of file
783 \ No newline at end of file
793 \ No newline at end of file
827 \ No newline at end of file
847 \ No newline at end of file
856 \ No newline at end of file
865 \ No newline at end of file
874 \ No newline at end of file
939 \ No newline at end of file
[all …]
/arkcompiler/runtime_core/verification/
DTODO.txt3 …- [x] (using atomic flag) Verification of method put under lock to exclude double verification at
4 …(? is writing to the field at the same time from different thread same value needs to be synced, m…
23 7. done Origins: at method entry, give different @start origins to parameters!
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dsplit_resolver.cpp5 * You may obtain a copy of the License at
54 …<< "Connect siblings for inst v" << interval->GetInst()->GetId() << " at point: " << curr->GetBegi… in ConnectSiblings()
59 // some block), so the SpillFill should be placed at the end of predecessor block. in ConnectSiblings()
116 …// Find sibling at the 'end - LIFE_NUMBER_GAP' position to connect siblings that were split at the… in ConnectSpiltFromPredBlock()
119 // Instruction was not defined at predecessor or has the same location there in ConnectSpiltFromPredBlock()
169 // Without CONNECT_SPLIT_SIBLINGS single SpillFillInst would be inserted at the end of BB1 in CreateSpillFillForSplitMove()
171 // at the beginning of BB1). RegAllocResolver may not handle such moves so it should be in CreateSpillFillForSplitMove()
/arkcompiler/toolchain/tooling/test/testcases/
Djs_step_into_test.h5 * You may obtain a copy of the License at
54 ASSERT_LOCATION_EQ(location, pointerLocations_.at(breakpointCounter_)); in JsStepIntoTest()
64 ASSERT_LOCATION_EQ(location, stepLocations_.at(stepCompleteCounter_)); in JsStepIntoTest()
77 TestUtil::WaitForBreakpoint(pointerLocations_.at(index)); in JsStepIntoTest()
80 TestUtil::WaitForStepComplete(stepLocations_.at(index)); in JsStepIntoTest()
Djs_step_over_test.h5 * You may obtain a copy of the License at
52 ASSERT_LOCATION_EQ(location, pointerLocations_.at(breakpointCounter_)); in JsStepOverTest()
62 ASSERT_LOCATION_EQ(location, stepLocations_.at(stepCompleteCounter_)); in JsStepOverTest()
75 TestUtil::WaitForBreakpoint(pointerLocations_.at(index)); in JsStepOverTest()
78 TestUtil::WaitForStepComplete(stepLocations_.at(index)); in JsStepOverTest()
Djs_step_out_test.h5 * You may obtain a copy of the License at
52 ASSERT_LOCATION_EQ(location, pointerLocations_.at(breakpointCounter_)); in JsStepOutTest()
62 ASSERT_LOCATION_EQ(location, stepLocations_.at(stepCompleteCounter_)); in JsStepOutTest()
75 TestUtil::WaitForBreakpoint(pointerLocations_.at(index)); in JsStepOutTest()
78 TestUtil::WaitForStepComplete(stepLocations_.at(index)); in JsStepOutTest()
/arkcompiler/runtime_core/verification/jobs/
Djob.h5 * You may obtain a copy of the License at
58 return fields_.at(offset); in GetField()
63 return methods_.at(offset); in GetMethod()
68 return classes_.at(offset); in GetClass()
/arkcompiler/runtime_core/libpandabase/mem/
Dmalloc_mem_pool-inl.h5 * You may obtain a copy of the License at
58 … << " at addr = " << std::hex << buff << " for " << SpaceTypeToString(space_type); in AllocArenaImpl()
66 << " at addr = " << std::hex << arena; in FreeArenaImpl()
80 …LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << size << " at addr = "… in AllocPoolImpl()
88 …LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free pool with size " << std::dec << size << " at addr = " <… in FreePoolImpl()
/arkcompiler/runtime_core/runtime/mem/gc/
Dgc_types.h5 * You may obtain a copy of the License at
124 GC_MINOR = 1U, // Objects collected at the minor GC
125 GC_MAJOR = 1U << 1U, // Objects collected at the major GC (MAJOR usually includes MINOR)
128 GC_ALL = GC_MINOR | GC_MAJOR | GC_FULL, // Can collect objects at any phase
/arkcompiler/ets_runtime/test/aottest/aot_compatibility_test/property_operation/
Dexpect_output.txt4 # You may obtain a copy of the License at
30 Exception at function func_main_0: 310
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_global.cpp5 * You may obtain a copy of the License at
211 // b. Let C be the code unit at index k within string. in Encode()
233 // 3. Let kChar be the code unit value of the code unit at index k within string. in Encode()
256 // 1. Let jOctet be the value at index j within Octets. in Encode()
267 uint8_t joct = static_cast<uint8_t>(oct.at(j)); in Encode()
268 tmpStr << '%' << hexStr.at((joct >> 4U) & BIT_MASK) // NOLINT in Encode()
269 … << hexStr.at(joct & BIT_MASK); // 4: means shift right by 4 digits in Encode()
310 // b. Let C be the code unit at index k within string. in Decode()
315 …// iv. Let B be the 8-bit value represented by the two hexadecimal digits at index (k + 1) and (… in Decode()
335 …// iii. If the code units at index (k+1) and (k + 2) within string do not represent hexadecimal di… in Decode()
[all …]
/arkcompiler/runtime_core/tests/verifier-tests/
Dcflow_execution_may_go_beyond_the_end.pa4 # You may obtain a copy of the License at
15 # improperly cflow termination at the end of the function
/arkcompiler/ets_runtime/ecmascript/mem/
Dverification.cpp5 * You may obtain a copy of the License at
35 << " at object:" << slot.SlotAddress(); in VisitAllObjects()
40 … LOG_GC(ERROR) << "Heap verify detected a dead object at " << value.GetTaggedObject() in VisitAllObjects()
41 << " at object:" << slot.SlotAddress(); in VisitAllObjects()

12345678910>>...212