Searched refs:Contents (Results 1 - 23 of 23) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineOperand.h137 /// SmallContents - This really should be part of the Contents union, but
143 unsigned OffsetLo; // Matches Contents.OffsetedInfo.OffsetHi.
150 /// Contents union - This contains the payload for the various operand types.
178 } Contents; member in class:llvm::MachineOperand
404 return Contents.ImmVal;
409 return Contents.CI;
414 return Contents.CFP;
419 return Contents.MBB;
425 return Contents.OffsetedInfo.Val.Index;
430 return Contents
[all...]
H A DScheduleDAG.h78 /// Contents - A union discriminated by the dependence kind.
87 } Contents; member in class:llvm::SDep
107 : Dep(S, kind), Contents() {
115 Contents.Reg = Reg;
119 Contents.Reg = Reg;
126 : Dep(S, Order), Contents(), Latency(0), MinLatency(0) {
127 Contents.OrdKind = kind;
137 return Contents.Reg == Other.Contents.Reg;
139 return Contents
[all...]
H A DMachineRegisterInfo.h77 return MO->Contents.Reg.Next;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp176 MO->Contents.Reg.Prev = MO;
177 MO->Contents.Reg.Next = 0;
184 MachineOperand *Last = Head->Contents.Reg.Prev;
187 Head->Contents.Reg.Prev = MO;
188 MO->Contents.Reg.Prev = Last;
194 MO->Contents.Reg.Next = Head;
198 MO->Contents.Reg.Next = 0;
199 Last->Contents.Reg.Next = MO;
211 MachineOperand *Next = MO->Contents.Reg.Next;
212 MachineOperand *Prev = MO->Contents
[all...]
H A DMachineInstr.cpp123 Contents.ImmVal = ImmVal;
156 Contents.Reg.Prev = 0;
688 NewMO->Contents.Reg.Prev = 0;
/freebsd-10.0-release/usr.sbin/pkg_install/create/
H A Dcreate.h35 extern char *Contents;
H A Dmain.c32 char *Contents = NULL; variable
120 Contents = optarg;
H A Dperform.c129 if (!strcmp(Contents, "-"))
132 pkg_in = fopen(Contents, "r");
136 __func__, Contents);
500 if (!Contents) {
/freebsd-10.0-release/contrib/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp195 ArrayRef<uint8_t> &Contents,
202 if (error_code ec = Obj->getSectionContents(Section, Contents)) return ec;
265 ArrayRef<uint8_t> Contents; local
266 if (error(Obj->getSectionContents(Pdata, Contents))) continue;
267 if (Contents.empty()) continue;
270 reinterpret_cast<const RuntimeFunction *>(Contents.data()),
271 Contents.size() / sizeof(RuntimeFunction));
192 getSectionContents(const COFFObjectFile *Obj, const std::vector<RelocationRef> &Rels, uint64_t Offset, ArrayRef<uint8_t> &Contents, uint64_t &Addr) argument
H A Dllvm-objdump.cpp461 StringRef Contents; local
465 if (error(si->getContents(Contents))) continue;
469 outs() << "Contents of section " << Name << ":\n";
473 BaseAddr + Contents.size());
478 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) {
485 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true)
486 << hexdigit(Contents[addr + i] & 0xF, true);
493 if (std::isprint(static_cast<unsigned char>(Contents[addr + i]) & 0xFF))
494 outs() << Contents[addr + i];
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCAssembler.h209 SmallVector<char, 32> Contents; member in class:llvm::MCDataFragment
220 virtual SmallVectorImpl<char> &getContents() { return Contents; }
221 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
259 SmallVector<char, 4> Contents; member in class:llvm::MCCompactEncodedInstFragment
270 virtual SmallVectorImpl<char> &getContents() { return Contents; }
271 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
290 /// Contents - Binary data for the currently encoded instruction.
291 SmallVector<char, 8> Contents; member in class:llvm::MCRelaxableFragment
301 virtual SmallVectorImpl<char> &getContents() { return Contents; }
302 virtual const SmallVectorImpl<char> &getContents() const { return Contents; }
452 SmallString<8> Contents; member in class:llvm::MCLEBFragment
486 SmallString<8> Contents; member in class:llvm::MCDwarfLineAddrFragment
518 SmallString<8> Contents; member in class:llvm::MCDwarfCallFrameFragment
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp145 } Contents; member in class:__anon2461::CountValue
149 CountValue(unsigned r, bool neg) : Kind(CV_Register), Contents(r),
151 explicit CountValue(int64_t i) : Kind(CV_Immediate), Contents(i),
160 return Contents.RegNum;
163 Contents.RegNum = Val;
168 return -Contents.ImmVal;
170 return Contents.ImmVal;
173 Contents.ImmVal = Val;
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCAssembler.cpp1049 OS << " Contents:[";
1050 const SmallVectorImpl<char> &Contents = DF->getContents(); local
1051 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
1053 OS << hexdigit((Contents[i] >> 4) & 0xF) << hexdigit(Contents[i] & 0xF);
1055 OS << "] (" << Contents.size() << " bytes)";
1073 OS << " Contents:[";
1074 const SmallVectorImpl<char> &Contents = CEIF->getContents(); local
1075 for (unsigned i = 0, e = Contents.size(); i != e; ++i) {
1077 OS << hexdigit((Contents[
[all...]
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp82 ArrayRef<uint8_t> &Contents,
478 ArrayRef<uint8_t> &Contents, uint64_t &Addr) {
487 if (error_code EC = Obj->getSectionContents(Section, Contents))
675 StringRef Contents; local
681 if (error(SecI->getContents(Contents))) return;
867 ArrayRef<uint8_t> Contents; local
868 if (error(Obj->getSectionContents(PData, Contents)) ||
869 Contents.empty())
873 reinterpret_cast<const RuntimeFunction *>(Contents.data()),
874 Contents
476 getSectionContents( const std::vector<RelocationRef> &Rels, uint64_t Offset, ArrayRef<uint8_t> &Contents, uint64_t &Addr) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp240 } Contents; member in class:__anon2395::CountValue
246 Contents.R.Reg = v;
247 Contents.R.Sub = u;
249 Contents.ImmVal = v;
257 return Contents.R.Reg;
261 return Contents.R.Sub;
265 return Contents.ImmVal;
270 if (isReg()) { OS << PrintReg(Contents.R.Reg, TRI, Contents.R.Sub); }
271 if (isImm()) { OS << Contents
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp118 SmallVector<AttributeItemType, 64> Contents; member in class:__anon2349::ObjectAttributeEmitter
150 assert(Contents.size() == 0);
162 Contents.push_back(attr);
176 Contents.push_back(attr);
195 for (unsigned int i=0; i<Contents.size(); ++i) {
196 AttributeItemType item = Contents[i];
210 Contents.clear();
/freebsd-10.0-release/sys/dev/ixgb/
H A DREADME8 Contents
/freebsd-10.0-release/sys/cam/ctl/
H A DREADME.ctl.txt8 Table of Contents:
/freebsd-10.0-release/contrib/dtc/Documentation/
H A Ddtc-paper.tex159 \multicolumn{1}{r}{\textbf{Offset}}& \multicolumn{1}{c}{\textbf{Contents}} \\\cline{2-2}
244 \subsection{Contents of the tree}
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang-c/
H A DIndex.h112 const char *Contents; member in struct:CXUnsavedFile
/freebsd-10.0-release/contrib/amd/doc/
H A Dtexinfo.tex133 \ifx\putwordShortTOC\undefined \gdef\putwordShortTOC{Short Contents}\fi
134 \ifx\putwordTOC\undefined \gdef\putwordTOC{Table of Contents}\fi
2504 % Contents of each column will wrap at width given in preamble. Width
4444 % Don't need to put `Contents' or `Short Contents' in the headline.
/freebsd-10.0-release/contrib/gcc/doc/include/
H A Dtexinfo.tex134 \ifx\putwordShortTOC\undefined \gdef\putwordShortTOC{Short Contents}\fi
135 \ifx\putwordTOC\undefined \gdef\putwordTOC{Table of Contents}\fi
2678 % Contents of each column will wrap at width given in preamble. Width
4643 % Don't need to put `Contents' or `Short Contents' in the headline.
/freebsd-10.0-release/contrib/groff/doc/
H A Dtexinfo.tex134 \ifx\putwordShortTOC\undefined \gdef\putwordShortTOC{Short Contents}\fi
135 \ifx\putwordTOC\undefined \gdef\putwordTOC{Table of Contents}\fi
2577 % Contents of each column will wrap at width given in preamble. Width
4516 % Don't need to put `Contents' or `Short Contents' in the headline.

Completed in 392 milliseconds