/arkcompiler/runtime_core/docs/ |
D | runtime-compiled_code-interaction.md | 8 * 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 …]
|
D | cfi_directives.md | 5 …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/ |
D | expect_output.txt | 14 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/ |
D | functionType.cpp | 24 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/ |
D | containers_stack_test.cpp | 65 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/ |
D | container.js | 251 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/ |
D | exception_case4.js | 23 let stack = e.stack 24 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case5/ |
D | exception_case5.js | 21 let stack = e.stack 22 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case1/ |
D | exception_case1.js | 23 let stack = e.stack 24 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case2/ |
D | exception_case2.js | 23 let stack = e.stack 24 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case10/ |
D | exception_case10.js | 26 let stack = e.stack 27 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case3/ |
D | exception_case3.js | 23 let stack = e.stack 24 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case12/ |
D | exception_case12.ts | 27 let stack = e.stack variable 28 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/ |
D | backtrace.cpp | 27 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/ |
D | exception_case8.js | 27 let stack = e.stack 28 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case7/ |
D | exception_case7.js | 26 let stack = e.stack 27 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case6/ |
D | exception_case6.js | 24 let stack = e.stack 25 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case9/ |
D | exception_case9.js | 29 let stack = e.stack 30 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/test/aottest/exception_case11/ |
D | exception_case11.ts | 29 let stack = e.stack variable 30 let array = stack.split('\n')
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_stack_iterator.cpp | 45 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/ |
D | backtrace.cpp | 39 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/ |
D | containers_stack.cpp | 47 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/ |
D | localVariablesReturnedFromCatchBlocks.ts | 26 let stack2 = e.stack; 28 AssertType(e.stack, "any");
|
/arkcompiler/ets_runtime/test/fuzztest/containersstackiterator_fuzzer/ |
D | containersstackiterator_fuzzer.cpp | 77 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/ |
D | containersstackpop_fuzzer.cpp | 77 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()
|