Home
last modified time | relevance | path

Searched full:exceptions (Results 1 – 25 of 277) sorted by relevance

12345678910>>...12

/arkcompiler/toolchain/build/config/compiler/
DBUILD.gn22 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/
Dnon_testable.yaml28 exceptions:
32 exceptions:
40 exceptions:
53 exceptions:
66 exceptions:
79 exceptions:
97 exceptions:
120 exceptions:
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/templates/
Duncovered_md.erb38 <% if v['exceptions'].class == Array %>
40 Exceptions:
42 <% v['exceptions']&.each do |e| -%>
/arkcompiler/runtime_core/isa/
Dasserts.rb80 %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')
Disa.yaml154 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/
Dabsint_checks.md29 ### 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/
Dbytecode_instruction_enum_gen.h.erb35 enum Exceptions : uint32_t {
36 % Panda::exceptions.each_with_index do |f, i|
Dbytecode_instruction-inl_gen.h.erb397 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/
Disa.md.erb45 Exceptions:
46 % g.exceptions.each do |e|
/arkcompiler/runtime_core/disassembler/
DCMakeLists.txt161 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/
Dexception_test.cpp172 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/
Dmonitor.yaml95 exceptions: [x_null]
101 exceptions:
132 exceptions: [x_null]
171 exceptions:
203 exceptions:
Dtest-schema.json39 "exceptions": { object
127 "exceptions": { object
Dlda.null.yaml20 exceptions:
Dnop.yaml20 exceptions:
Dmov.null.yaml20 exceptions:
/arkcompiler/runtime_core/compiler/docs/
Dtry_catch_blocks_ir.md123 ## 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/
Dcxx.gni52 configs += [ "//toolchain/build/config/compiler:exceptions" ]
77 configs += [ "//toolchain/build/config/compiler:exceptions" ]
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
Dspec.rb61 … %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/
Dignore_checked_coverage.txt1 # Example of adding exceptions to check that compiler is compiled:
/arkcompiler/runtime_core/runtime/include/coretypes/
Dstring-inl.h21 #include "runtime/include/exceptions.h"
/arkcompiler/runtime_core/bytecode_optimizer/
Doptions.yaml48 description: Disable optimizer for methods with exceptions handlers
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_2107_1.pa21 # exceptions:
Dbug_2107_2.pa23 # exceptions:
/arkcompiler/runtime_core/runtime/
Ddeoptimization.h18 #include "runtime/include/exceptions.h"

12345678910>>...12