Searched refs:Form (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-10.1-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h38 /// Form - Dwarf form code.
40 dwarf::Form Form; member in class:llvm::DIEAbbrevData
42 DIEAbbrevData(dwarf::Attribute A, dwarf::Form F) : Attribute(A), Form(F) {}
46 dwarf::Form getForm() const { return Form; }
86 void AddAttribute(dwarf::Attribute Attribute, dwarf::Form Form) { argument
87 Data.push_back(DIEAbbrevData(Attribute, Form));
160 addValue(dwarf::Attribute Attribute, dwarf::Form Form, DIEValue *Value) argument
[all...]
H A DDIE.cpp40 ID.AddInteger(unsigned(Form));
212 void DIEInteger::EmitValue(AsmPrinter *Asm, dwarf::Form Form) const {
214 switch (Form) {
244 unsigned DIEInteger::SizeOf(AsmPrinter *AP, dwarf::Form Form) const {
245 switch (Form) {
279 void DIEExpr::EmitValue(AsmPrinter *AP, dwarf::Form Form) const {
280 AP->OutStreamer.EmitValue(Expr, SizeOf(AP, Form));
[all...]
H A DDwarfCompileUnit.h181 void addUInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
184 void addUInt(DIEBlock *Block, dwarf::Form Form, uint64_t Integer);
188 void addSInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
191 void addSInt(DIEBlock *Die, Optional<dwarf::Form> Form, int64_t Integer);
203 void addExpr(DIEBlock *Die, dwarf::Form Form, cons
[all...]
H A DDwarfCompileUnit.cpp141 Optional<dwarf::Form> Form, uint64_t Integer) {
142 if (!Form)
143 Form = DIEInteger::BestForm(false, Integer);
146 Die->addValue(Attribute, *Form, Value);
149 void CompileUnit::addUInt(DIEBlock *Block, dwarf::Form Form, uint64_t Integer) { argument
150 addUInt(Block, (dwarf::Attribute)0, Form, Integer);
156 Optional<dwarf::Form> Form, int64_
140 addUInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, uint64_t Integer) argument
155 addSInt(DIE *Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form, int64_t Integer) argument
163 addSInt(DIEBlock *Die, Optional<dwarf::Form> Form, int64_t Integer) argument
176 dwarf::Form Form; local
212 addExpr(DIEBlock *Die, dwarf::Form Form, const MCExpr *Expr) argument
219 addLabel(DIE *Die, dwarf::Attribute Attribute, dwarf::Form Form, const MCSymbol *Label) argument
225 addLabel(DIEBlock *Die, dwarf::Form Form, const MCSymbol *Label) argument
749 dwarf::Form Form; local
826 dwarf::Form Form; local
[all...]
H A DDwarfDebug.cpp2082 dwarf::Form Form = AbbrevData[i].getForm(); local
2083 assert(Form && "Too many attributes for DIE (check abbreviation)");
2098 if (Form == dwarf::DW_FORM_ref_addr) {
2144 Values[i]->EmitValue(Asm, Form);
2153 Values[i]->EmitValue(Asm, Form);
2158 Values[i]->EmitValue(Asm, Form);
/freebsd-10.1-release/contrib/llvm/lib/DebugInfo/
H A DDWARFAbbreviationDeclaration.h26 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {} argument
28 uint16_t Form; member in struct:llvm::DWARFAbbreviationDeclaration::AttributeSpec
42 return idx < Attributes.size() ? Attributes[idx].Form : 0;
H A DDWARFAbbreviationDeclaration.cpp47 uint16_t Form = Data.getULEB128(OffsetPtr); local
52 if (Attr == 0 && Form == 0)
54 Attributes.push_back(AttributeSpec(Attr, Form));
80 const char *formString = FormEncodingString(Attributes[i].Form);
84 OS << format("DW_FORM_Unknown_%x", Attributes[i].Form);
H A DDWARFFormValue.cpp110 if (Form < ArrayRef<FormClass>(DWARF4FormClasses).size() &&
111 DWARF4FormClasses[Form] == FC)
114 if (Form == DW_FORM_ref_sig8)
117 if (Form == DW_FORM_GNU_addr_index)
119 if (Form == DW_FORM_GNU_str_index)
124 if ((Form == DW_FORM_data4 || Form == DW_FORM_data8) &&
139 switch (Form) {
143 (Form == DW_FORM_addr)
213 Form
[all...]
H A DDWARFDebugInfoEntry.cpp120 uint16_t Form = AbbrevDecl->getFormByIndex(i); local
123 (Form < FixedFormSizes.size()) ? FixedFormSizes[Form] : 0;
126 else if (!DWARFFormValue::skipValue(Form, DebugInfoData, OffsetPtr, U)) {
/freebsd-10.1-release/contrib/llvm/include/llvm/DebugInfo/
H A DDWARFFormValue.h51 uint16_t Form; // Form for this value. member in class:llvm::DWARFFormValue
55 DWARFFormValue(uint16_t Form = 0) : Form(Form) {}
56 uint16_t getForm() const { return Form; }
/freebsd-10.1-release/contrib/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp232 Form = byteFromRec(Rec, "FormBits");
496 if (Form == X86Local::Pseudo ||
664 switch (Form) {
906 if (needsModRMForDecode(Form))
907 filter = new ModFilter(isRegFormat(Form));
914 switch (Form) {
925 filter = new ExtendedFilter(true, Form - X86Local::MRM0r);
935 filter = new ExtendedFilter(false, Form - X86Local::MRM0m);
938 } // switch (Form)
949 if (needsModRMForDecode(Form))
[all...]
H A DX86RecognizableInstr.h46 uint8_t Form; member in class:llvm::X86Disassembler::RecognizableInstr
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h49 dw_form_t Form() const { return m_form; } function in class:DWARFFormValue
77 dw_form_t m_form; // Form for this value
H A DDWARFFormValue.cpp501 dw_form_t a_form = a_value.Form();
502 dw_form_t b_form = b_value.Form();
H A DDWARFDebugInfoEntry.cpp803 if (form_value.Form() != DW_FORM_addr)
1089 s.Printf( " [%s]", DW_FORM_value_to_name(form_value.Form()));
1452 if (form_value.Form() != DW_FORM_addr)
H A DSymbolFileDWARF.cpp7370 if (DWARFFormValue::IsBlockForm(form_value.Form()))
7377 else if (DWARFFormValue::IsDataForm(form_value.Form()))
7382 uint32_t data_length = fixed_form_sizes[form_value.Form()];
7388 if (form_value.Form() == DW_FORM_strp)
7392 uint32_t data_length = fixed_form_sizes[form_value.Form()];
/freebsd-10.1-release/contrib/llvm/lib/Target/Mips/
H A DMipsCodeEmitter.cpp169 uint64_t Form = TSFlags & MipsII::FormMask; local
170 if (Form == MipsII::FrmJ)
172 if ((Form == MipsII::FrmI || Form == MipsII::FrmFI)
175 if (Form == MipsII::FrmI && MI.getOpcode() == Mips::LUi)
/freebsd-10.1-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp39 AddrForm Form; member in struct:__anon2608::SystemZAddressingMode
62 : Form(form), DR(dr), Base(), Disp(0), Index(),
66 bool hasIndexField() { return Form != FormBD; }
69 bool isDynAlloc() { return Form == FormBDXDynAlloc; }
169 // Try to match Addr as a FormBDX* address of form Form with
172 bool selectBDXAddr(SystemZAddressingMode::AddrForm Form,
546 if (AM.Form == SystemZAddressingMode::FormBDXLA &&
634 bool SystemZDAGToDAGISel::selectBDXAddr(SystemZAddressingMode::AddrForm Form, argument
638 SystemZAddressingMode AM(Form, DR);
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp908 } Form = Init; local
931 Form = Init;
936 Form = Load;
943 Form = Copy;
965 Form = Arithmetic;
970 Form = Xchg;
974 Form = GNUXchg;
979 Form = C11CmpXchg;
984 Form = GNUCmpXchg;
989 if (TheCall->getNumArgs() < NumArgs[Form]) {
[all...]
/freebsd-10.1-release/contrib/llvm/lib/Target/ARM/
H A DARMCodeEmitter.cpp1110 unsigned Form = MCID.TSFlags & ARMII::FormMask; local
1131 if (IsPrePost && Form == ARMII::StFrm) {
1188 unsigned Form = MCID.TSFlags & ARMII::FormMask; local
1202 if (IsPrePost && Form == ARMII::StMiscFrm) {
1639 unsigned Form = MCID.TSFlags & ARMII::FormMask;
1647 switch (Form) {
1665 switch (Form) {
1683 if (Form == ARMII::VFPConv5Frm)
1686 else if (Form == ARMII::VFPConv3Frm)
/freebsd-10.1-release/contrib/tcpdump/
H A Dprint-snmp.c248 const char *Form[] = { variable
491 if (form >= sizeof(Form)/sizeof(Form[0])) {
496 printf("[class?%c/%d]", *Form[form], class);
500 printf("[id?%c/%s/%d]", *Form[form], Class[class].name, id);
847 * Rose-Normal-Form.
/freebsd-10.1-release/contrib/llvm/lib/MC/
H A DMCDwarf.cpp451 static void EmitAbbrev(MCStreamer *MCOS, uint64_t Name, uint64_t Form) { argument
453 MCOS->EmitULEB128IntValue(Form);
/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DDwarf.h326 enum Form LLVM_ENUM_INT_TYPE(uint16_t) {
/freebsd-10.1-release/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.c1869 reply(504, "Form must be N.");
/freebsd-10.1-release/contrib/amd/doc/
H A Dtexinfo.tex150 \ifx\putwordDefspec\undefined \gdef\putwordDefspec{Special Form}\fi

Completed in 457 milliseconds

12