Home
last modified time | relevance | path

Searched refs:EH (Results 1 – 25 of 407) sorted by relevance

12345678910>>...17

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/util/
DTryListBuilder.java46 public class TryListBuilder<EH extends ExceptionHandler>
50 private final MutableTryBlock<EH> listStart;
51 private final MutableTryBlock<EH> listEnd;
54 listStart = new MutableTryBlock<EH>(0, 0); in TryListBuilder()
55 listEnd = new MutableTryBlock<EH>(0, 0); in TryListBuilder()
60 public static <EH extends ExceptionHandler> List<TryBlock<EH>> massageTryBlocks( in massageTryBlocks()
61 List<? extends TryBlock<? extends EH>> tryBlocks) { in massageTryBlocks()
62 TryListBuilder<EH> tlb = new TryListBuilder<EH>(); in massageTryBlocks()
64 for (TryBlock<? extends EH> tryBlock: tryBlocks) { in massageTryBlocks()
68 for (EH exceptionHandler: tryBlock.getExceptionHandlers()) { in massageTryBlocks()
[all …]
/external/parameter-framework/upstream/test/functional-tests/include/
DElementHandle.hpp51 using EH = ::ElementHandle; typedef in parameterFramework::ElementHandle
63 size_t getSize() const { return EH::getSize(); } in getSize()
68 if (not EH::getMappingData(key, value)) { in getMappingData()
69 throw Exception("Could not find mapping key \"" + key + "\" in " + EH::getPath()); in getMappingData()
75 void setAsDouble(double value) { mayFailCall(&EH::setAsDouble, value); } in setAsDouble()
77 void getAsDouble(double &value) const { mayFailCall(&EH::getAsDouble, value); } in getAsDouble()
79 void setAsBoolean(bool value) { mayFailCall(&EH::setAsBoolean, value); } in setAsBoolean()
80 void getAsBoolean(bool &value) const { mayFailCall(&EH::getAsBoolean, value); } in getAsBoolean()
82 void setAsInteger(uint32_t value) { mayFailCall(&EH::setAsInteger, value); } in setAsInteger()
83 void getAsInteger(uint32_t &value) const { mayFailCall(&EH::getAsInteger, value); } in getAsInteger()
[all …]
DParameterFramework.hpp62 using EH = ::ElementHandle; typedef in parameterFramework::ParameterFramework
163 EH createElementHandle(const std::string &path) in createElementHandle()
166 std::unique_ptr<EH> newedHandle{mayFailCall(&PF::createElementHandle, path)}; in createElementHandle()
167 EH handle{*newedHandle}; in createElementHandle()
/external/llvm-project/llvm/test/CodeGen/WebAssembly/
Dlower-em-ehsjlj-options.ll1 ; RUN: llc < %s -enable-emscripten-cxx-exceptions | FileCheck %s --check-prefix=EH
4 …cripten-cxx-exceptions -mtriple=wasm64-unknown-unknown 2>&1 | FileCheck %s --check-prefix=WASM64-EH
13 ; EH-LABEL: type exception,@function
18 ; EH: call invoke_vi
19 ; EH-NOT: call __invoke_void_i32
25 ; EH: call invoke_v
26 ; EH-NOT: call __invoke_void
66 ; EH-LABEL: type test_invoke_ignoreme,@function
70 ; EH: call invoke_ignoreme
91 ; EH: .functype invoke_vi (i32, i32) -> ()
[all …]
Dlower-em-ehsjlj-multi-return.ll1 …llc < %s -enable-emscripten-cxx-exceptions -mattr=+multivalue 2>&1 | FileCheck %s --check-prefix=EH
4 ; Currently multivalue returning functions are not supported in Emscripten EH /
56 ; EH: LLVM ERROR: Emscripten EH/SjLj does not support multivalue returns
57 ; SJLJ: LLVM ERROR: Emscripten EH/SjLj does not support multivalue returns
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/
Ddebug_frame_offset.test10 RUN: -eh-frame=0x00000018 | FileCheck %s --check-prefix=EH
11 EH: .eh_frame contents:
12 EH-NEXT: 00000018 00000024 0000001c FDE cie=00000000 pc=fffffffffffffd20...fffffffffffffd44
13 EH-NEXT: Format: DWARF32
14 EH-NEXT: DW_CFA_advance_loc: 1
15 EH-NOT: pc
16 EH-NOT: CIE
/external/llvm-project/llvm/include/llvm/ObjectYAML/
Dyaml2obj.h53 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH);
54 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
55 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
57 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
59 ErrorHandler EH);
60 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
Dyaml2obj.h49 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
50 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
51 bool yaml2macho(YamlObjectFile &Doc, raw_ostream &Out, ErrorHandler EH);
53 ErrorHandler EH);
54 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
/external/llvm-project/lld/test/ELF/
Dmips-eh_frame-pic.s8 # RUN: llvm-dwarfdump --eh-frame %t-nopic.o | FileCheck %s --check-prefix=ABS64-EH-FRAME
34 # RUN: llvm-dwarfdump --eh-frame %t-pic32.so | FileCheck %s --check-prefix=PIC-EH-FRAME
43 # ABS64-EH-FRAME: Augmentation data: 0C
45 # ABS32-EH-FRAME: Augmentation data: 0B
47 # PIC-EH-FRAME: Augmentation data: 1B
Dgc-sections-eh.s7 # RUN: llvm-objdump --dwarf=frames %t2 | FileCheck --check-prefix=EH %s
16 # EH: FDE cie={{.*}} pc=
17 # EH-NOT: FDE
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
DTryBlock.java41 public interface TryBlock<EH extends ExceptionHandler> {
70 @Nonnull List<? extends EH> getExceptionHandlers(); in getExceptionHandlers()
/external/llvm-project/llvm/examples/ExceptionDemo/
DCMakeLists.txt12 # Enable EH and RTTI for this demo
14 message(FATAL_ERROR "ExceptionDemo must require EH.")
/external/llvm/examples/ExceptionDemo/
DCMakeLists.txt12 # Enable EH and RTTI for this demo
14 message(FATAL_ERROR "ExceptionDemo must require EH.")
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
DBaseTryBlock.java37 public abstract class BaseTryBlock<EH extends ExceptionHandler> implements TryBlock<EH> {
/external/llvm-project/clang/test/CodeGenObjCXX/
Dexceptions-legacy.mm33 // Real EH cleanup.
41 // ObjC EH "cleanup".
77 // Real EH cleanup.
/external/clang/test/CodeGenObjCXX/
Dexceptions-legacy.mm33 // Real EH cleanup.
41 // ObjC EH "cleanup".
71 // Real EH cleanup.
/external/llvm-project/lldb/unittests/Symbol/
DTestDWARFCallFrameInfo.cpp227 auto section_sp = list->FindSectionByType(type == DWARFCallFrameInfo::EH in TestBasic()
256 TestBasic(DWARFCallFrameInfo::EH, "eh_frame"); in TEST_F()
/external/llvm-project/lldb/include/lldb/Symbol/
DDWARFCallFrameInfo.h35 enum Type { EH, DWARF }; enumerator
163 return m_type == EH ? lldb::eRegisterKindEHFrame : lldb::eRegisterKindDWARF; in GetRegisterKind()
/external/ppp/pppd/plugins/rp-pppoe/
Dcommon.c167 #define EH(x) (x)[0], (x)[1], (x)[2], (x)[3], (x)[4], (x)[5] macro
212 printer(arg, " dst %02x:%02x:%02x:%02x:%02x:%02x ", EH(packet->ethHdr.h_dest)); in pppoe_printpkt()
213 printer(arg, " src %02x:%02x:%02x:%02x:%02x:%02x\n", EH(packet->ethHdr.h_source)); in pppoe_printpkt()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h40 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections()
41 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h39 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections()
40 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
/external/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h39 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections()
40 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
/external/llvm/docs/
DExceptionHandling.rst530 is that Itanium EH is designed around the idea of "successive unwinding," while
531 Windows EH is not.
534 memory to hold the exception, and calling into the EH runtime. The runtime
545 The Windows EH model does not use these successive register context resets.
550 userspace DLLs provided with Windows. Each frame on the stack has an assigned EH
561 architecture. The funclet implements the EH action by accessing local variables
563 continuing the EH process. No variables live in to or out of the funclet can be
595 control dependencies. Filter expressions run during the first phase of EH,
597 graph. For now, the new EH instructions cannot represent SEH filter
605 The primary design goal of the new EH instructions is to support funclet
[all …]
/external/llvm-project/llvm/test/Transforms/HotColdSplit/
Deh-pads.ll14 ; Note: EH pads are not candidates for region entry points.
44 ; Note: EH pads are not candidates for region entry points.
/external/llvm-project/llvm/docs/
DExceptionHandling.rst530 is that Itanium EH is designed around the idea of "successive unwinding," while
531 Windows EH is not.
534 memory to hold the exception, and calling into the EH runtime. The runtime
545 The Windows EH model does not use these successive register context resets.
550 userspace DLLs provided with Windows. Each frame on the stack has an assigned EH
561 architecture. The funclet implements the EH action by accessing local variables
563 continuing the EH process. No variables live in to or out of the funclet can be
595 control dependencies. Filter expressions run during the first phase of EH,
597 graph. For now, the new EH instructions cannot represent SEH filter
605 The primary design goal of the new EH instructions is to support funclet
[all …]

12345678910>>...17