Home
last modified time | relevance | path

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

123

/freebsd/stand/efi/loader/arch/amd64/
H A Dexc.S29 .macro EH N, err=1 macro
44 EH 0,0
45 EH 1,0
46 EH 2,0
47 EH 3,0
48 EH 4,0
49 EH 5,0
50 EH 6,0
51 EH 7,0
52 EH 8
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h71 ErrorHandler EH);
73 ErrorHandler EH);
75 ErrorHandler EH);
76 LLVM_ABI bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
79 ErrorHandler EH);
81 ErrorHandler EH);
83 ErrorHandler EH);
85 ErrorHandler EH);
87 ErrorHandler EH);
89 ErrorHandler EH);
/freebsd/share/termcap/
H A Dtermcap152 :kb=^h:le=^H:bs:co#132:hc:hu=\EH:hd=\Eh:os:pt:up=^Z:
154 :le=^H:bs:co#132:hc:hd=\Eh:hu=\EH:os:pt:up=^Z:do=^J:
171 :kb=^h:le=^H:bs:co#80:hc:hu=\EH:hd=\Eh:os:pt:up=^Z:
258 :co#80:cl=\EH\EJ:cd=\EJ:cm=\EY%+ %+ :\
260 :dl=\EM:dc=\EP:ic=\E\136:sf=\EH\EM\EY5 :sr=\ET:kb=^H:
329 :co#80:dc=6\b:dl=130\EP\EA\EQ:dm=\EP:ed=\EQ:ei=\EQ:ho=\EH:\
334 :dc=6\EB:ei=\EP:ho=\EH:im=\EP:ip=6:\
337 :kh=\EH:ku=\EA:kr=\EC:li#24:nd=\EC:pc=\177:pt:eo:ul:up=\EA:xn:
410 :dl=\EO:dc=\EQ:kd=\EB:ku=\EA:kl=\ED:kr=\EC:kh=\EH:\
416 :dl=\EO:do=\EB:ds=\E#\072:es:fs=\E=:ho=\EH:\
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h90 PlainPrinterBase(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in PlainPrinterBase() argument
91 : OS(OS), ErrHandler(EH), Config(Config) {} in PlainPrinterBase()
115 LLVMPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in LLVMPrinter() argument
116 : PlainPrinterBase(OS, EH, Config) {} in LLVMPrinter()
124 GNUPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in GNUPrinter() argument
125 : PlainPrinterBase(OS, EH, Config) {} in GNUPrinter()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DEHUtils.h22 enum Status { Unknown = 0, EH = 1, NonEH = 2 }; in computeEHOnlyBlocks() enumerator
57 Statuses[&BB] = EH; in computeEHOnlyBlocks()
81 if (Entry.second == EH) in computeEHOnlyBlocks()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h36 enum Type { EH, DWARF }; enumerator
174 return m_type == EH ? lldb::eRegisterKindEHFrame : lldb::eRegisterKindDWARF; in GetRegisterKind()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h34 EHFrameRelatedSections(SID EH, SID T, SID Ex) in EHFrameRelatedSections()
35 : EHFrameSID(EH), TextSID(T), ExceptTabSID(Ex) {} in EHFrameRelatedSections()
/freebsd/contrib/tcsh/
H A Dtermcap.vms23 :ct=2\E[3g:st=2\EH:\
43 :ct=2\E[3g:st=2\EH:\
/freebsd/contrib/elftoolchain/libelf/
H A Delf_scn.c73 #define CHECK_EHDR(E,EH) do { \ in _libelf_load_section_headers() argument
76 fsz != (EH)->e_shentsize || \ in _libelf_load_section_headers()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DArchiveEmitter.cpp19 bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2archive() argument
H A DOffloadEmitter.cpp20 bool yaml2offload(Binary &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2offload() argument
H A DELFEmitter.cpp314 ELFState(ELFYAML::Object &D, yaml::ErrorHandler EH);
328 yaml::ErrorHandler EH, uint64_t MaxSize);
343 ELFState<ELFT>::ELFState(ELFYAML::Object &D, yaml::ErrorHandler EH) in ELFState() argument
344 : Doc(D), ErrHandler(EH) { in ELFState()
2067 yaml::ErrorHandler EH, uint64_t MaxSize) { in writeELF() argument
2068 ELFState<ELFT> State(Doc, EH); in writeELF()
2134 bool yaml2elf(llvm::ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH, in yaml2elf() argument
2140 return ELFState<object::ELF64LE>::writeELF(Out, Doc, EH, MaxSize); in yaml2elf()
2141 return ELFState<object::ELF64BE>::writeELF(Out, Doc, EH, MaxSize); in yaml2elf()
2144 return ELFState<object::ELF32LE>::writeELF(Out, Doc, EH, MaxSize); in yaml2elf()
[all …]
H A DWasmEmitter.cpp28 WasmWriter(WasmYAML::Object &Obj, yaml::ErrorHandler EH) in WasmWriter() argument
29 : Obj(Obj), ErrHandler(EH) {} in WasmWriter()
697 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2wasm() argument
698 WasmWriter Writer(Doc, EH); in yaml2wasm()
H A DXCOFFEmitter.cpp35 XCOFFWriter(XCOFFYAML::Object &Obj, raw_ostream &OS, yaml::ErrorHandler EH) in XCOFFWriter() argument
36 : Obj(Obj), W(OS, llvm::endianness::big), ErrHandler(EH), in XCOFFWriter()
894 bool yaml2xcoff(XCOFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH) { in yaml2xcoff() argument
895 XCOFFWriter Writer(Doc, Out, EH); in yaml2xcoff()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp174 result->SetSourceName(m_type == EH ? "eh_frame CFI" : "DWARF CFI"); in GetUnwindPlan()
296 (m_type == EH && cie_id == 0ul))) { in ParseCIE()
500 if ((cie_id == 0 && m_type == EH) || cie_id == UINT32_MAX || len == 0) { in GetFDEIndex()
580 assert(!(m_type == EH && 0 == cie_offset) && cie_offset != UINT32_MAX); in ParseFDE()
584 if (m_type == EH) in ParseFDE()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmInfo.h628 void setExceptionsType(ExceptionHandling EH) { in setExceptionsType() argument
629 ExceptionsType = EH; in setExceptionsType()
/freebsd/contrib/llvm-project/llvm/lib/Support/BLAKE3/
H A Dblake3_sse41_x86-64_windows_msvc.asm1575 pshufd xmm3, xmm3, 4EH
1576 pshufd xmm11, xmm11, 4EH
1621 pshufd xmm3, xmm3, 4EH
1622 pshufd xmm11, xmm11, 4EH
1641 pshufd xmm7, xmm6, 1EH
1658 pshufd xmm15, xmm14, 1EH
1747 pshufd xmm3, xmm3, 4EH
1770 pshufd xmm3, xmm3, 4EH
1787 pshufd xmm7, xmm6, 1EH
1861 pshufd xmm3, xmm3, 4EH
[all …]
H A Dblake3_sse2_x86-64_windows_msvc.asm1781 pshufd xmm3, xmm3, 4EH
1782 pshufd xmm11, xmm11, 4EH
1835 pshufd xmm3, xmm3, 4EH
1836 pshufd xmm11, xmm11, 4EH
1861 pshufd xmm7, xmm6, 1EH
1884 pshufd xmm15, xmm14, 1EH
1975 pshufd xmm3, xmm3, 4EH
2002 pshufd xmm3, xmm3, 4EH
2024 pshufd xmm7, xmm6, 1EH
2100 pshufd xmm3, xmm3, 4EH
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp36 assert(CFISecType != AsmPrinter::CFISection::EH && in beginFunction()
H A DDwarfCFIException.cpp114 CFISecType == AsmPrinter::CFISection::EH, true); in beginBasicBlockSection()
/freebsd/contrib/llvm-project/libcxx/src/support/runtime/
H A Dexception_pointer_glibcxx.ipp10 // libsupc++ does not implement the dependent EH ABI and the functionality
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp167 void MCObjectStreamer::emitCFISections(bool EH, bool Debug) { in emitCFISections() argument
168 MCStreamer::emitCFISections(EH, Debug); in emitCFISections()
169 EmitEHFrame = EH; in emitCFISections()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.cpp757 auto [BH, EH] = std::make_pair(std::begin(HvxInts), std::end(HvxInts)); in getIntrinsicId()
763 auto FoundHvx = std::lower_bound(BH, EH, Hvx{Opc, 0, 0}, CmpOpcode); in getIntrinsicId()
764 if (FoundHvx != EH && FoundHvx->Opcode == Opc) { in getIntrinsicId()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp170 bool EH = Args.hasFlag(options::OPT_fexceptions, options::OPT_fno_exceptions, in addExceptionArgs() local
179 EH = true; in addExceptionArgs()
190 EH |= shouldUseExceptionTablesForObjCExceptions(objcRuntime, Triple); in addExceptionArgs()
208 EH = true; in addExceptionArgs()
220 if (EH) in addExceptionArgs()
222 return EH; in addExceptionArgs()
7332 bool EH = false; in ConstructJob() local
7334 EH = addExceptionArgs(Args, InputType, TC, KernelOrKext, Runtime, CmdArgs); in ConstructJob()
7968 (EH || UnwindTables || AsyncUnwindTables || in ConstructJob()
8197 static bool maybeConsumeDash(const std::string &EH, size_t &I) { in maybeConsumeDash() argument
[all …]
/freebsd/sys/contrib/device-tree/Bindings/usb/
H A Dgeneric.txt20 - otg-rev: tells usb driver the release number of the OTG and EH supplement

123