Home
last modified time | relevance | path

Searched refs:Form (Results 1 – 25 of 1750) sorted by relevance

12345678910>>...70

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp46 ID.AddInteger(unsigned(Form)); in Profile()
47 if (Form == dwarf::DW_FORM_implicit_const) in Profile()
332 getDIE##T().emitValue(AP, Form); \ in emitValue()
344 return getDIE##T().SizeOf(AP, Form); in SizeOf()
375 void DIEInteger::emitValue(const AsmPrinter *Asm, dwarf::Form Form) const { in emitValue()
376 switch (Form) { in emitValue()
410 Asm->OutStreamer->emitIntValue(Integer, SizeOf(Asm, Form)); in emitValue()
430 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const { in SizeOf()
436 if (Optional<uint8_t> FixedSize = dwarf::getFixedFormByteSize(Form, Params)) in SizeOf()
439 switch (Form) { in SizeOf()
[all …]
H A DDwarfUnit.h82 dwarf::Form Form, T &&Value) { in addAttribute() argument
93 DIEValue(Attribute, Form, std::forward<T>(Value))); in addAttribute()
148 Optional<dwarf::Form> Form, uint64_t Integer);
150 void addUInt(DIEValueList &Block, dwarf::Form Form, uint64_t Integer);
154 Optional<dwarf::Form> Form, int64_t Integer);
156 void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer);
167 void addLabel(DIEValueList &Die, dwarf::Attribute Attribute, dwarf::Form Form,
170 void addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label);
198 void addBlock(DIE &Die, dwarf::Attribute Attribute, dwarf::Form Form,
H A DAccelTable.cpp212 dwarf::Form Form; member
301 Asm->OutStreamer->AddComment(dwarf::FormEncodingString(A.Form)); in emit()
302 Asm->emitInt16(A.Form); in emit()
412 dwarf::Form Form = DIEInteger::BestForm(/*IsSigned*/ false, LargestCUIndex); in getUniformAttributes() local
413 UA.push_back({dwarf::DW_IDX_compile_unit, Form}); in getUniformAttributes()
460 Asm->emitULEB128(AttrEnc.Form, in emitAbbrevs()
461 dwarf::FormEncodingString(AttrEnc.Form).data()); in emitAbbrevs()
482 ID.emitValue(Asm, AttrEnc.Form); in emitEntry()
486 assert(AttrEnc.Form == dwarf::DW_FORM_ref4); in emitEntry()
632 << "Form: " << dwarf::FormEncodingString(Form) << "\n"; in print()
H A DDwarfUnit.cpp228 Optional<dwarf::Form> Form, uint64_t Integer) { in addUInt() argument
229 if (!Form) in addUInt()
230 Form = DIEInteger::BestForm(false, Integer); in addUInt()
231 assert(Form != dwarf::DW_FORM_implicit_const && in addUInt()
233 addAttribute(Die, Attribute, *Form, DIEInteger(Integer)); in addUInt()
236 void DwarfUnit::addUInt(DIEValueList &Block, dwarf::Form Form, in addUInt() argument
238 addUInt(Block, (dwarf::Attribute)0, Form, Integer); in addUInt()
242 Optional<dwarf::Form> Form, int64_t Integer) { in addSInt() argument
243 if (!Form) in addSInt()
244 Form = DIEInteger::BestForm(true, Integer); in addSInt()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DDIE.h54 dwarf::Form Form; variable
60 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F) in DIEAbbrevData()
61 : Attribute(A), Form(F) {} in DIEAbbrevData()
63 : Attribute(A), Form(dwarf::DW_FORM_implicit_const), Value(V) {} in DIEAbbrevData()
68 dwarf::Form getForm() const { return Form; } in getForm()
109 void AddAttribute(dwarf::Attribute Attribute, dwarf::Form Form) { in AddAttribute() argument
110 Data.push_back(DIEAbbrevData(Attribute, Form)); in AddAttribute()
170 static dwarf::Form BestForm(bool IsSigned, uint64_t Int) { in BestForm()
193 void emitValue(const AsmPrinter *Asm, dwarf::Form Form) const;
194 unsigned SizeOf(const AsmPrinter *AP, dwarf::Form Form) const;
[all …]
H A DAccelTable.h230 const uint16_t Form; member
232 constexpr Atom(uint16_t Type, uint16_t Form) : Type(Type), Form(Form) {} in Atom()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp80 DWARFFormValue DWARFFormValue::createFromSValue(dwarf::Form F, int64_t V) { in createFromSValue()
84 DWARFFormValue DWARFFormValue::createFromUValue(dwarf::Form F, uint64_t V) { in createFromUValue()
88 DWARFFormValue DWARFFormValue::createFromPValue(dwarf::Form F, const char *V) { in createFromPValue()
92 DWARFFormValue DWARFFormValue::createFromBlockValue(dwarf::Form F, in createFromBlockValue()
100 DWARFFormValue DWARFFormValue::createFromUnit(dwarf::Form F, const DWARFUnit *U, in createFromUnit()
108 bool DWARFFormValue::skipValue(dwarf::Form Form, DataExtractor DebugInfoData, in skipValue() argument
113 switch (Form) { in skipValue()
173 dwarf::getFixedFormByteSize(Form, Params)) { in skipValue()
202 Form = static_cast<dwarf::Form>(DebugInfoData.getULEB128(OffsetPtr)); in skipValue()
214 if (Form < makeArrayRef(DWARF5FormClasses).size() && in isFormClass()
[all …]
H A DDWARFAbbreviationDeclaration.cpp64 auto F = static_cast<Form>(Data.getULEB128(OffsetPtr)); in extract()
133 OS << formatv("\t{0}\t{1}", Spec.Attr, Spec.Form); in dump()
169 DWARFFormValue::skipValue(AttributeSpecs[CurAttrIdx].Form, DebugInfoData, in getAttributeValue()
175 return DWARFFormValue::createFromSValue(Spec.Form, in getAttributeValue()
178 DWARFFormValue FormValue(Spec.Form); in getAttributeValue()
204 auto FixedByteSize = dwarf::getFixedFormByteSize(Form, U.getFormParams()); in getByteSize()
H A DDWARFVerifier.cpp594 const auto Form = AttrValue.Value.getForm(); in verifyDebugInfoForm() local
595 switch (Form) { in verifyDebugInfoForm()
609 error() << FormEncodingString(Form) << " CU offset " in verifyDebugInfoForm()
662 error() << FormEncodingString(Form) in verifyDebugInfoForm()
674 error() << FormEncodingString(Form) << " uses index " in verifyDebugInfoForm()
683 error() << FormEncodingString(Form) << " uses index " in verifyDebugInfoForm()
1136 StringRef FormName = dwarf::FormEncodingString(AttrEnc.Form); in verifyNameIndexAttribute()
1141 AttrEnc.Form); in verifyNameIndexAttribute()
1146 if (AttrEnc.Form != dwarf::DW_FORM_data8) { in verifyNameIndexAttribute()
1150 NI.getUnitOffset(), Abbr.Code, AttrEnc.Form, dwarf::DW_FORM_data8); in verifyNameIndexAttribute()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h57 dwarf::Form Form; /// Form for this value. variable
64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue()
67 DWARFFormValue(dwarf::Form F = dwarf::Form(0)) : Form(F) {} in Form() function
69 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V);
70 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V);
71 static DWARFFormValue createFromPValue(dwarf::Form F, const char *V);
72 static DWARFFormValue createFromBlockValue(dwarf::Form F,
74 static DWARFFormValue createFromUnit(dwarf::Form F, const DWARFUnit *Unit,
77 dwarf::Form getForm() const { return Form; } in getForm()
138 return DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, Params); in skipValue()
[all …]
H A DDWARFAbbreviationDeclaration.h30 AttributeSpec(dwarf::Attribute A, dwarf::Form F, int64_t Value) in AttributeSpec()
31 : Attr(A), Form(F), Value(Value) { in AttributeSpec()
34 AttributeSpec(dwarf::Attribute A, dwarf::Form F, Optional<uint8_t> ByteSize) in AttributeSpec()
35 : Attr(A), Form(F) { in AttributeSpec()
43 dwarf::Form Form; member
70 return Form == dwarf::DW_FORM_implicit_const; in isImplicitConst()
100 dwarf::Form getFormByIndex(uint32_t idx) const { in getFormByIndex()
102 return AttributeSpecs[idx].Form; in getFormByIndex()
H A DDWARFAcceleratorTable.h97 using Form = dwarf::Form; member
100 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
192 ArrayRef<std::pair<HeaderData::AtomType, HeaderData::Form>> getAtomsDesc();
258 dwarf::Form Form; member
260 constexpr AttributeEncoding(dwarf::Index Index, dwarf::Form Form) in AttributeEncoding()
261 : Index(Index), Form(Form) {} in AttributeEncoding()
265 return LHS.Index == RHS.Index && LHS.Form == RHS.Form;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCLoopInstrFormPrep.cpp190 InstrForm Form);
211 InstrForm Form);
220 InstrForm Form);
233 InstrForm Form);
378 InstrForm Form) { in prepareBaseForDispFormChain() argument
392 BucketChain.Elements[j].Offset->getAPInt().urem(Form); in prepareBaseForDispFormChain()
415 for (unsigned j = 0; j < (unsigned)Form; j++) in prepareBaseForDispFormChain()
494 InstrForm Form) { in rewriteLoadStores() argument
525 bool CanPreInc = (Form == UpdateForm || in rewriteLoadStores()
526 ((Form == DSForm) && !BasePtrIncSCEV->getAPInt().urem(4) && in rewriteLoadStores()
[all …]
H A DPPCInstrFormats.td40 // Indicate that this instruction is of type X-Form Load or Store
111 // Base class for all X-Form memory instructions
116 // 1.7.1 I-Form
128 // 1.7.2 B-Form
209 // 1.7.3 SC-Form
222 // 1.7.4 D-Form
378 // 1.7.5 DS-Form
393 // ISA V3.0B 1.6.6 DX-Form
409 // DQ-Form: [PO T RA DQ TX XO] or [PO S RA DQ SX XO]
425 // 1.7.6 X-Form
[all …]
/netbsd-src/external/mpl/bind/dist/
H A DCOPYING21 means Source Code Form to which the initial Contributor has attached the
22 notice in Exhibit A, the Executable Form of such Source Code Form, and
23 Modifications of such Source Code Form, in each case including portions
36 1.6. "Executable Form"
38 means any form of the work other than Source Code Form.
59 a. any file in Source Code Form that results from an addition to,
62 b. any new file in Source Code Form that contains any Covered Software.
78 1.13. "Source Code Form"
165 3.1. Distribution of Source Form
167 All distribution of Covered Software in Source Code Form, including any
[all …]
H A DLICENSE21 means Source Code Form to which the initial Contributor has attached the
22 notice in Exhibit A, the Executable Form of such Source Code Form, and
23 Modifications of such Source Code Form, in each case including portions
36 1.6. "Executable Form"
38 means any form of the work other than Source Code Form.
59 a. any file in Source Code Form that results from an addition to,
62 b. any new file in Source Code Form that contains any Covered Software.
78 1.13. "Source Code Form"
165 3.1. Distribution of Source Form
167 All distribution of Covered Software in Source Code Form, including any
[all …]
/netbsd-src/external/mpl/dhcp/dist/
H A DLICENSE4 # This Source Code Form is subject to the terms of the Mozilla Public
30 means Source Code Form to which the initial Contributor has attached the
31 notice in Exhibit A, the Executable Form of such Source Code Form, and
32 Modifications of such Source Code Form, in each case including portions
45 1.6. "Executable Form"
47 means any form of the work other than Source Code Form.
68 a. any file in Source Code Form that results from an addition to,
71 b. any new file in Source Code Form that contains any Covered Software.
87 1.13. "Source Code Form"
174 3.1. Distribution of Source Form
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DDwarf.cpp116 unsigned llvm::dwarf::FormVersion(dwarf::Form Form) { in FormVersion() argument
117 switch (Form) { in FormVersion()
127 unsigned llvm::dwarf::FormVendor(dwarf::Form Form) { in FormVendor() argument
128 switch (Form) { in FormVendor()
694 Optional<uint8_t> llvm::dwarf::getFixedFormByteSize(dwarf::Form Form, in getFixedFormByteSize() argument
696 switch (Form) { in getFixedFormByteSize()
781 bool llvm::dwarf::isValidFormForVersion(Form F, unsigned Version, in isValidFormForVersion()
816 constexpr char llvm::dwarf::EnumTraits<Form>::Type[];
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp79 Form = byteFromRec(Rec, "FormBits"); in RecognizableInstr()
104 (Form == X86Local::MRMDestReg || Form == X86Local::MRMSrcReg); in RecognizableInstr()
123 if (Form == X86Local::Pseudo || (IsCodeGenOnly && !ForceDisassemble)) { in RecognizableInstr()
463 switch (Form) { in emitInstructionSpecifier()
759 switch (Form) { in emitDecodePath()
798 filter = std::make_unique<ExtendedFilter>(true, Form - X86Local::MRM0r); in emitDecodePath()
804 filter = std::make_unique<ExtendedFilter>(true, Form - X86Local::MRM0X); in emitDecodePath()
807 filter = std::make_unique<ExtendedRMFilter>(true, Form - X86Local::MRMr0); in emitDecodePath()
813 filter = std::make_unique<ExtendedFilter>(false, Form - X86Local::MRM0m); in emitDecodePath()
816 filter = std::make_unique<ExactFilter>(0xC0 + Form - X86Local::MRM_C0); in emitDecodePath()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DDwarf.h131 enum Form : uint16_t { enum
612 unsigned FormVersion(Form F);
626 unsigned FormVendor(Form F);
691 Optional<uint8_t> getFixedFormByteSize(dwarf::Form Form, FormParams Params);
695 bool isValidFormForVersion(Form F, unsigned Version, bool ExtensionsOk = true);
747 template <> struct EnumTraits<Form> : public std::true_type {
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp634 DWARFFormValue Val(AttrSpec.Form); in lookForRefDIEsToKeep()
637 DWARFFormValue::skipValue(AttrSpec.Form, Data, &Offset, in lookForRefDIEsToKeep()
659 if (AttrSpec.Form != dwarf::DW_FORM_ref_addr && (UseOdr || IsModuleRef) && in lookForRefDIEsToKeep()
908 if (AttrSpec.Form == dwarf::DW_FORM_ref_addr || in cloneDieReferenceAttribute()
935 dwarf::Form(AttrSpec.Form), DIEEntry(*NewRefDie)); in cloneDieReferenceAttribute()
1011 if (AttrSpec.Form == dwarf::DW_FORM_exprloc) { in cloneBlockAttribute()
1023 dwarf::Form(AttrSpec.Form), Loc); in cloneBlockAttribute()
1026 dwarf::Form(AttrSpec.Form), Block); in cloneBlockAttribute()
1066 dwarf::Form(AttrSpec.Form), DIEInteger(Val.getRawUValue())); in cloneAddressAttribute()
1070 dwarf::Form Form = AttrSpec.Form; in cloneAddressAttribute() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp225 getIndexedString(dwarf::Form Form, DataExtractor InfoData, uint64_t &InfoOffset, in getIndexedString() argument
227 if (Form == dwarf::DW_FORM_string) in getIndexedString()
230 switch (Form) { in getIndexedString()
289 dwarf::Form Form; in getCUIdentifiers() local
291 (Form = static_cast<dwarf::Form>(AbbrevData.getULEB128(&AbbrevOffset))) && in getCUIdentifiers()
292 (Name != 0 || Form != 0)) { in getCUIdentifiers()
296 Form, InfoData, Offset, StrOffsets, Str, Header.Version); in getCUIdentifiers()
305 Form, InfoData, Offset, StrOffsets, Str, Header.Version); in getCUIdentifiers()
316 Form, InfoData, &Offset, in getCUIdentifiers()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp39 AttAbrv.Form = Attribute.Form; in dumpDebugAbbrev()
40 if (AttAbrv.Form == dwarf::DW_FORM_implicit_const) in dumpDebugAbbrev()
249 auto Form = FormValue.getValue().getForm(); in dumpDebugInfo() local
253 switch (Form) { in dumpDebugInfo()
302 Form = static_cast<dwarf::Form>(Val.getValue()); in dumpDebugInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp705 uint64_t Form = TSFlags & X86II::FormMask; in emitPrefixImpl() local
706 switch (Form) { in emitPrefixImpl()
1445 uint64_t Form = TSFlags & X86II::FormMask; in encodeInstruction() local
1446 switch (Form) { in encodeInstruction()
1448 errs() << "FORM: " << Form << "\n"; in encodeInstruction()
1530 bool ForceSIB = (Form == X86II::MRMDestMemFSIB); in encodeInstruction()
1605 bool ForceSIB = (Form == X86II::MRMSrcMemFSIB); in encodeInstruction()
1677 (Form == X86II::MRMXr) ? 0 : Form - X86II::MRM0r, OS); in encodeInstruction()
1711 (Form == X86II::MRMXm) ? 0 : Form - X86II::MRM0m, TSFlags, in encodeInstruction()
1725 emitByte(0xC0 + ((Form - X86II::MRM0X) << 3), OS); in encodeInstruction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp42 AddrForm Form; member
65 : Form(form), DR(dr), Base(), Disp(0), Index(), in SystemZAddressingMode()
69 bool hasIndexField() { return Form != FormBD; } in hasIndexField()
72 bool isDynAlloc() { return Form == FormBDXDynAlloc; } in isDynAlloc()
178 bool selectBDXAddr(SystemZAddressingMode::AddrForm Form,
595 if (AM.Form == SystemZAddressingMode::FormBDXLA && in selectAddress()
689 bool SystemZDAGToDAGISel::selectBDXAddr(SystemZAddressingMode::AddrForm Form, in selectBDXAddr() argument
693 SystemZAddressingMode AM(Form, DR); in selectBDXAddr()
1678 SystemZAddressingMode::AddrForm Form; in SelectInlineAsmMemoryOperand() local
1688 Form = SystemZAddressingMode::FormBD; in SelectInlineAsmMemoryOperand()
[all …]

12345678910>>...70