Searched full:exceptions (Results 1 – 25 of 277) sorted by relevance
12345678910>>...12
| /arkcompiler/toolchain/build/config/compiler/ |
| D | BUILD.gn | 22 config("exceptions") { 24 # Enables exceptions in the STL. 36 # Disables exceptions in the STL. 37 # libc++ uses the __has_feature macro to control whether to use exceptions, 41 # exceptions, despite being conditional on _HAS_EXCEPTIONS. 46 cflags_cc = [ "-fno-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/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/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')
|
| D | isa.yaml | 154 exceptions: 156 description: Bytecode doesn't throw exceptions. 276 exceptions: 366 exceptions: 406 exceptions: 516 exceptions: 622 exceptions: 711 exceptions: 747 exceptions: 768 exceptions: [all …]
|
| /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|
|
| D | bytecode_instruction-inl_gen.h.erb | 397 template<const BytecodeInstMode Mode> inline bool BytecodeInst<Mode>::IsThrow(Exceptions exception)… 400 % exception_array = i.exceptions.map {|prop| "Exceptions::" + prop.upcase} 402 % exceptions = exception_array.join(' | ') 404 return ((<%= exceptions %>) & exception) == exception; // NOLINT(hicpp-signed-bitwise) 418 return <%= i.exceptions != ["x_none"] %>;
|
| /arkcompiler/runtime_core/isa/templates/ |
| D | isa.md.erb | 45 Exceptions: 46 % g.exceptions.each do |e|
|
| /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/runtime/tests/ |
| D | exception_test.cpp | 172 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 255 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 341 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 427 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 514 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 601 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 684 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 767 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 852 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() 937 ASSERT_NE(result.GetAs<int64_t>(), no_exceptions) << "No exceptions were thrown"; in TEST_F() [all …]
|
| /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:
|
| D | test-schema.json | 39 "exceptions": { object 127 "exceptions": { object
|
| D | lda.null.yaml | 20 exceptions:
|
| D | nop.yaml | 20 exceptions:
|
| D | mov.null.yaml | 20 exceptions:
|
| /arkcompiler/runtime_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
|
| /arkcompiler/toolchain/build/templates/cxx/ |
| D | cxx.gni | 52 configs += [ "//toolchain/build/config/compiler:exceptions" ] 77 configs += [ "//toolchain/build/config/compiler:exceptions" ]
|
| /arkcompiler/runtime_core/tests/cts-coverage-tool/lib/ |
| D | spec.rb | 61 … %w[prefixes groups properties exceptions verification version min_version chapters].each do |attr| 97 grp['exceptions_tests'] = grp['exceptions'].map do |e| 138 ntg['exceptions']&.each do |nte| 274 test_group['exceptions']&.each do |te|
|
| /arkcompiler/runtime_core/compiler/tools/ |
| D | ignore_checked_coverage.txt | 1 # Example of adding exceptions to check that compiler is compiled:
|
| /arkcompiler/runtime_core/runtime/include/coretypes/ |
| D | string-inl.h | 21 #include "runtime/include/exceptions.h"
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | options.yaml | 48 description: Disable optimizer for methods with exceptions handlers
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | bug_2107_1.pa | 21 # exceptions:
|
| D | bug_2107_2.pa | 23 # exceptions:
|
| /arkcompiler/runtime_core/runtime/ |
| D | deoptimization.h | 18 #include "runtime/include/exceptions.h"
|
12345678910>>...12