| /arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/ |
| D | 12_errors.rst | 55 The difference between these two terms is that *exceptions* are the 57 is expected to resolve some exceptions, and inform the user if it 64 As a result, exceptions can be handled in a much more effective 73 Some modern programming languages support only exceptions; others 75 *exceptions* and *errors* must be supported. ``Exception`` and 78 Exceptions are described in the chapter Experimental Features (see 79 :ref:`Exceptions`) of this specification. 143 exceptions and errors. Throwing exceptions provide a structured way to 148 errors in a manner similar to the handling of exceptions.
|
| /arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/config/ |
| D | non_testable.yaml | 28 exceptions: 32 exceptions: 40 exceptions: 53 exceptions: 66 exceptions: 79 exceptions:
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/config/ |
| D | non_testable.yaml | 28 exceptions: 32 exceptions: 40 exceptions: 53 exceptions: 66 exceptions: 79 exceptions: 97 exceptions: 120 exceptions:
|
| /arkcompiler/ets_runtime/test/aottest/stownbyindex/ |
| D | stownbyindex.ts | 85 const exceptions = { constant 105 const expected = unit in exceptions 106 ? [exceptions[unit]["1"], exceptions[unit]["0"], exceptions[unit]["0"], exceptions[unit]["-1"]]
|
| /arkcompiler/ets_runtime/test/aottest/ic/ |
| D | ic.ts | 92 const exceptions = { constant 112 const expected = unit in exceptions ? 113 [exceptions[unit]["1"], exceptions[unit]["0"], exceptions[unit]["0"], exceptions[unit]["-1"]] :
|
| /arkcompiler/runtime_core/static_core/plugins/ets/isa/ |
| D | isa.yaml | 35 exceptions: 77 exceptions: 129 exceptions: 179 exceptions: 195 exceptions: 212 exceptions: 234 exceptions:
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_exceptions.h | 29 // NOTE: Is used to throw all language exceptional objects (currently Errors and Exceptions) 32 // NOTE: Is used to throw all language exceptional objects (currently Errors and Exceptions) 38 // NOTE: Is used to throw all language exceptional objects (currently Errors and Exceptions)
|
| /arkcompiler/ets_runtime/test/fuzztest/jsnapiexception_fuzzer/ |
| D | jsnapiexception_fuzzer.cpp | 37 JSNApi::GetUncaughtException(vm); // Get uncaught exceptions in JSNApiThrowExceptionFuzztest() 38 JSNApi::HasPendingException(vm); // There are pending exceptions in JSNApiThrowExceptionFuzztest() 39 TryCatch tryCatch(vm); // Capture exceptions in JSNApiThrowExceptionFuzztest()
|
| /arkcompiler/runtime_core/static_core/isa/ |
| D | isa.yaml | 149 exceptions: 151 description: Bytecode doesn't throw exceptions. 273 exceptions: 287 exceptions: 310 exceptions: 339 exceptions: 353 exceptions: 376 exceptions: 411 exceptions: 428 exceptions: [all …]
|
| D | asserts.rb | 80 %i[verification exceptions properties].flat_map { |type| Panda.send(type).map(&:tag) }.uniq? 84 %i[verification exceptions properties].map do |type| 92 %i[verification exceptions properties].map do |type| 101 assert('Verification, exceptions and properties are not empty for every instruction group') do 102 %i[verification exceptions properties].map do |type| 190 i.properties.include?('call') && i.exceptions.include?('x_call')
|
| /arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/templates/ |
| D | uncovered_md.erb | 38 <% if v['exceptions'].class == Array %> 40 Exceptions: 42 <% v['exceptions']&.each do |e| -%>
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/ |
| D | uncovered_md.erb | 38 <% if v['exceptions'].class == Array %> 40 Exceptions: 42 <% v['exceptions']&.each do |e| -%>
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/06.statements/02.multiple_catch_clauses_in_try_statements/ |
| D | try.sts | 19 Try statements run the block of code to handle exceptions and errors. 20 Try statements can contain several catch clauses to handle exceptions and
|
| /arkcompiler/runtime_core/isa/ |
| D | asserts.rb | 80 %i[verification exceptions properties].flat_map { |type| Panda.send(type).map(&:tag) }.uniq? 84 %i[verification exceptions properties].map do |type| 92 %i[verification exceptions properties].map do |type| 101 assert('Verification, exceptions and properties are not empty for every instruction group') do 102 %i[verification exceptions properties].map do |type| 190 i.properties.include?('call') && i.exceptions.include?('x_call')
|
| /arkcompiler/runtime_core/docs/bc_verification/ |
| D | absint_checks.md | 29 ### Checks of exceptions, that can be thrown in runtime 31 Some code may exibit behavior of permanently throwing of exceptions, like always throwing NPE.
|
| /arkcompiler/runtime_core/libpandafile/templates/ |
| D | bytecode_instruction_enum_gen.h.erb | 35 enum Exceptions : uint32_t { 36 % Panda::exceptions.each_with_index do |f, i|
|
| /arkcompiler/runtime_core/static_core/docs/bc_verification/ |
| D | absint_checks.md | 29 ### Checks of exceptions, that can be thrown in runtime 31 Some code may exibit behavior of permanently throwing of exceptions, like always throwing NPE.
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/coroutines/ |
| D | launch_exception.sts | 34 console.println("No exceptions thrown by coro_stack_overflow() but should be!") 48 console.println("No exceptions thrown by coro_error() but should be!")
|
| /arkcompiler/runtime_core/isa/templates/ |
| D | isa.md.erb | 45 Exceptions: 46 % g.exceptions.each do |e|
|
| /arkcompiler/runtime_core/static_core/isa/templates/ |
| D | isa.md.erb | 45 Exceptions: 46 % g.exceptions.each do |e|
|
| /arkcompiler/runtime_core/libabckit/src/irbuilder_dynamic/templates/ |
| D | bytecode_inst_enum_gen.h.erb | 61 enum Exceptions : uint32_t { 62 % Panda::exceptions.each_with_index do |f, i|
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | try_catch_blocks_ir.md | 123 ## Exceptions' meta-info in the IR 142 …`Try-begin` basic block. It contains pointer to the `Try-end` and maps exceptions types to the cat… 146 ## Graph special data-structures for exceptions info 160 …is the catcher that processes appropriate exceptions. If it is not known for certain that any of t…
|
| /arkcompiler/runtime_core/static_core/libpandafile/templates/ |
| D | bytecode_instruction_enum_gen.h.erb | 46 enum Exceptions : uint32_t { 47 % Panda::exceptions.each_with_index do |f, i|
|
| /arkcompiler/runtime_core/disassembler/ |
| D | CMakeLists.txt | 161 compile_pre_build(TARGET disasm_binaries-exceptions 162 FILE_SRC ${DISASM_TESTS_DIR}/exceptions.pa 163 FILE_DST ${DISASM_BIN_DIR}/exceptions.bc) 167 add_dependencies(disasm_tests disasm_binaries-exceptions)
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | monitor.yaml | 95 exceptions: [x_null] 101 exceptions: 132 exceptions: [x_null] 171 exceptions: 203 exceptions:
|