Home
last modified time | relevance | path

Searched refs:stack (Results 1 – 25 of 99) sorted by relevance

1234

/arkcompiler/runtime_core/docs/
Druntime-compiled_code-interaction.md8 * The structure of compiled code stack frames and stack traversing
50 …_ | StackFrameKind | A kind of the current stack frame (compiled code or interpreter sta…
83 A stack frame contains data necessary to execute the function the frame belongs to.
84 …kinds of stack frames. But all the frames of managed code must have the structure described in [Co…
86 ### Interpreter stack frame
87 …terpreter stack frame is decribed by `panda::Frame` class. The class has fields to store virtual r…
88 All the consecutive interpreter stack frames are organized into a linked list. The field `panda::Fr…
90 ### Compiled code stack frame
91 Each compiled function is responsible to reserve stack frame for its purpose and then release it wh…
92 Generaly compiled function builds the stack frame in prolog and releases it in epilog. If a compile…
[all …]
Dcfi_directives.md5 …ecial cryptographic/vector instructions) or if there is a need for manual stack/registers manipula…
7 …rmation**) is a subset of these debug symbols which is responsible for correct **stack unwinding**.
24 In prolog we save `lr`, `fp` and `callee` regs on stack.
25 So we should explicitly mark these stack slots with help of `CFI` directives.
30 In epilog we read saved `callees` from stack and also `fp`/`lr`. Here we annotate that saved regist…
34 There are bridges which `hack` stack memory (setting `stack pointer` to other stack frame), i.e.:
/arkcompiler/ets_runtime/test/moduletest/asmstackoverflow/
Dexpect_output.txt14 stack overflow2!
17 callarg0_with_callthis stack overflow!
18 callarg1_with_callthis stack overflow!
19 callarg2_with_callthis stack overflow!
20 callarg3_with_callthis stack overflow!
21 callrange_with_callthis stack overflow!
/arkcompiler/ets_frontend/es2panda/typescript/types/
DfunctionType.cpp24 static std::unordered_set<const FunctionType *> stack; in ToString() local
26 if (stack.find(this) != stack.end()) { in ToString()
27 stack.erase(this); in ToString()
32 stack.insert(this); in ToString()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_stack_test.cpp65 JSHandle<JSTaggedValue> stack = GetCallArg(argv, 2); // 2 means the secode arg in TestForEachFunc() local
66 if (!stack->IsUndefined()) { in TestForEachFunc()
68 … TaggedArray *elements = TaggedArray::Cast(JSAPIStack::Cast(stack.GetTaggedValue(). in TestForEachFunc()
112 JSHandle<JSAPIStack> stack(thread, result); in CreateJSAPIStack() local
113 return stack; in CreateJSAPIStack()
132 JSHandle<JSAPIStack> stack(thread, result); in HWTEST_F_L0() local
133 JSTaggedValue resultProto = JSTaggedValue::GetPrototype(thread, JSHandle<JSTaggedValue>(stack)); in HWTEST_F_L0()
145 JSHandle<JSAPIStack> stack = CreateJSAPIStack(); in HWTEST_F_L0() local
149 callInfo->SetThis(stack.GetTaggedValue()); in HWTEST_F_L0()
163 JSHandle<JSAPIStack> stack = CreateJSAPIStack(); in HWTEST_F_L0() local
[all …]
/arkcompiler/toolchain/tooling/test/testcases/js/
Dcontainer.js251 let stack = new Stack();
252 stack.push(5);
253 stack.push(18);
254 stack.push(3);
255 stack.push(28);
256 stack.push(1);
257 stack.push('one');
258 stack.push(888);
259 stack.push(857);
260 stack.push('six');
[all …]
/arkcompiler/ets_runtime/test/aottest/exception_case4/
Dexception_case4.js23 let stack = e.stack
24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case5/
Dexception_case5.js21 let stack = e.stack
22 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case1/
Dexception_case1.js23 let stack = e.stack
24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case2/
Dexception_case2.js23 let stack = e.stack
24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case10/
Dexception_case10.js26 let stack = e.stack
27 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case3/
Dexception_case3.js23 let stack = e.stack
24 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case12/
Dexception_case12.ts27 let stack = e.stack variable
28 let array = stack.split('\n')
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/
Dbacktrace.cpp27 void Backtrace(std::ostringstream &stack, [[maybe_unused]] bool enableCache) in Backtrace() argument
37 stack << "=====================Backtrace========================"; in Backtrace()
42 stack << stackList[i]; in Backtrace()
/arkcompiler/ets_runtime/test/aottest/exception_case8/
Dexception_case8.js27 let stack = e.stack
28 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case7/
Dexception_case7.js26 let stack = e.stack
27 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case6/
Dexception_case6.js24 let stack = e.stack
25 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case9/
Dexception_case9.js29 let stack = e.stack
30 let array = stack.split('\n')
/arkcompiler/ets_runtime/test/aottest/exception_case11/
Dexception_case11.ts29 let stack = e.stack variable
30 let array = stack.split('\n')
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_stack_iterator.cpp45 JSHandle<JSTaggedValue> stack(thread, iter->GetIteratedStack()); in Next() local
47 if (stack->IsUndefined()) { in Next()
52 uint32_t length = static_cast<uint32_t>((JSHandle<JSAPIStack>::Cast(stack))->GetSize() + 1); in Next()
63 JSHandle<JSTaggedValue> value(thread, JSHandle<JSAPIStack>::Cast(stack)->Get(index)); in Next()
/arkcompiler/ets_runtime/ecmascript/platform/unix/ohos/
Dbacktrace.cpp39 void Backtrace(std::ostringstream &stack, bool enableCache) in Backtrace() argument
60 stack << "=====================Backtrace========================"; in Backtrace()
85 stack << std::endl; in Backtrace()
86 stack << std::string(buf, strlen(buf)); in Backtrace()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_stack.cpp47 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(obj); in StackConstructor() local
48 stack->SetTop(-1); in StackConstructor()
70 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in IsEmpty() local
71 bool judge = stack->Empty(); in IsEmpty()
117 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in Peek() local
118 JSTaggedValue jsValue = stack->Peek(); in Peek()
142 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in Locate() local
143 int num = stack->Search(value); in Locate()
165 JSHandle<JSAPIStack> stack = JSHandle<JSAPIStack>::Cast(self); in Pop() local
166 JSTaggedValue jsValue = stack->Pop(); in Pop()
[all …]
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DlocalVariablesReturnedFromCatchBlocks.ts26 let stack2 = e.stack;
28 AssertType(e.stack, "any");
/arkcompiler/ets_runtime/test/fuzztest/containersstackiterator_fuzzer/
Dcontainersstackiterator_fuzzer.cpp77 JSHandle<JSAPIStack> stack(thread, result); in CreateJSAPIStack() local
78 return stack; in CreateJSAPIStack()
100 JSHandle<JSAPIStack> stack = CreateJSAPIStack(thread); in ContainersStackIteratorFuzzTest() local
104 callInfo->SetThis(stack.GetTaggedValue()); in ContainersStackIteratorFuzzTest()
112 callInfo->SetThis(stack.GetTaggedValue()); in ContainersStackIteratorFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/containersstackpop_fuzzer/
Dcontainersstackpop_fuzzer.cpp77 JSHandle<JSAPIStack> stack(thread, result); in CreateJSAPIStack() local
78 return stack; in CreateJSAPIStack()
100 JSHandle<JSAPIStack> stack = CreateJSAPIStack(thread); in ContainersStackPopFuzzTest() local
104 callInfo->SetThis(stack.GetTaggedValue()); in ContainersStackPopFuzzTest()
112 callInfo->SetThis(stack.GetTaggedValue()); in ContainersStackPopFuzzTest()

1234