Searched refs:Desc (Results 1 - 25 of 39) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/TableGen/
H A DTableGenBackend.h25 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/MC/
H A DMCInstrInfo.h27 const MCInstrDesc *Desc; // Raw array to allow static init'n member in class:llvm::MCInstrInfo
37 Desc = D;
50 return Desc[Opcode];
H A DSubtargetFeature.h36 const char *Desc; // Help descriptor member in struct:llvm::SubtargetFeatureKV
H A DMCRegisterInfo.h148 const MCRegisterDesc *Desc; // Pointer to the descriptor array member in class:llvm::MCRegisterInfo
239 Desc = D;
299 return Desc[RegNo];
/macosx-10.9.5/llvmCore-3425.0.33/lib/TableGen/
H A DTableGenBackend.cpp28 void llvm::emitSourceFileHeader(StringRef Desc, raw_ostream &OS) { argument
31 printLine(OS, "|* " + Desc, ' ', "*|");
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp36 void AsmPrinter::EmitSLEB128(int Value, const char *Desc) const {
37 if (isVerbose() && Desc)
38 OutStreamer.AddComment(Desc);
44 void AsmPrinter::EmitULEB128(unsigned Value, const char *Desc, argument
46 if (isVerbose() && Desc)
47 OutStreamer.AddComment(Desc);
93 /// describing the encoding. Desc is an optional string saying what the
95 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const {
97 if (Desc != 0)
98 OutStreamer.AddComment(Twine(Desc)
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DStatistic.h38 const char *Desc; member in class:llvm::Statistic
44 const char *getDesc() const { return Desc; }
48 Name = name; Desc = desc;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86CodeEmitter.cpp72 const MCInstrDesc *Desc) const;
76 const MCInstrDesc *Desc) const;
82 void emitInstruction(MachineInstr &MI, const MCInstrDesc *Desc);
143 const MCInstrDesc &Desc = I->getDesc(); local
144 emitInstruction(*I, &Desc);
146 if (Desc.getOpcode() == X86::MOVPC32r)
161 const MCInstrDesc &Desc = MI.getDesc(); local
164 if ((Desc.TSFlags & X86II::FormMask) == X86II::Pseudo)
166 if (Desc.TSFlags & X86II::REX_W)
169 unsigned NumOps = Desc
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DRegistry.h22 const char *Name, *Desc; member in class:llvm::SimpleRegistryEntry
27 : Name(N), Desc(D), Ctor(C)
31 const char *getDesc() const { return Desc; }
199 Add(const char *Name, const char *Desc) argument
200 : Entry(Name, Desc, CtorFn), Node(Entry) {}
H A DCommandLine.h269 const char *Desc; member in struct:llvm::cl::desc
270 desc(const char *Str) : Desc(Str) {}
271 void apply(Option &O) const { O.setDescription(Desc); }
277 const char *Desc; member in struct:llvm::cl::value_desc
278 value_desc(const char *Str) : Desc(Str) {}
279 void apply(Option &O) const { O.setValueStr(Desc); }
458 ValuesClass(const char *EnumName, DataType Val, const char *Desc, argument
461 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc)));
483 const char *Desc, ...) {
485 va_start(ValueArgs, Desc);
482 values(const char *Arg, DataType Val, const char *Desc, ...) argument
[all...]
H A DTargetRegistry.h814 RegisterTarget(Target &T, const char *Name, const char *Desc) { argument
815 TargetRegistry::RegisterTarget(T, Name, Desc,
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DLexicalScopes.h160 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
173 const MDNode *getDesc() const { return Desc; }
175 const MDNode *getScopeNode() const { return Desc; }
235 AssertingVH<const MDNode> Desc; // Debug info descriptor. member in class:llvm::LexicalScope
H A DAsmPrinter.h370 void EmitSLEB128(int Value, const char *Desc = 0) const;
373 void EmitULEB128(unsigned Value, const char *Desc = 0,
381 /// describing the encoding. Desc is a string saying what the encoding is
383 void EmitEncodingByte(unsigned Val, const char *Desc = 0) const;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp126 const MCInst &MI, const MCInstrDesc &Desc,
134 const MCInst &MI, const MCInstrDesc &Desc,
444 const MCInstrDesc &Desc,
564 unsigned NumOps = Desc.getNumOperands();
566 if (NumOps > 1 && Desc.getOperandConstraint(1, MCOI::TIED_TO) == 0)
568 else if (NumOps > 3 && Desc.getOperandConstraint(2, MCOI::TIED_TO) == 0) {
569 assert(Desc.getOperandConstraint(NumOps - 1, MCOI::TIED_TO) == 1);
719 const MCInstrDesc &Desc) {
729 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
846 const MCInstrDesc &Desc,
442 EmitVEXOpcodePrefix(uint64_t TSFlags, unsigned &CurByte, int MemOperand, const MCInst &MI, const MCInstrDesc &Desc, raw_ostream &OS) const argument
718 DetermineREXPrefix(const MCInst &MI, uint64_t TSFlags, const MCInstrDesc &Desc) argument
844 EmitOpcodePrefix(uint64_t TSFlags, unsigned &CurByte, int MemOperand, const MCInst &MI, const MCInstrDesc &Desc, raw_ostream &OS) const argument
960 const MCInstrDesc &Desc = MCII.get(Opcode); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DAliasAnalysisCounter.cpp43 void printLine(const char *Desc, unsigned Val, unsigned Sum) { argument
44 errs() << " " << Val << " " << Desc << " responses ("
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/InstPrinter/
H A DX86ATTInstPrinter.cpp42 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); local
43 uint64_t TSFlags = Desc.TSFlags;
H A DX86IntelInstPrinter.cpp36 const MCInstrDesc &Desc = MII.get(MI->getOpcode()); local
37 uint64_t TSFlags = Desc.TSFlags;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp293 const MCInstrDesc &Desc = MI->getDesc(); local
295 switch (Desc.TSFlags & MSP430II::SizeMask) {
297 switch (Desc.getOpcode()) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/MBlaze/MCTargetDesc/
H A DMBlazeMCCodeEmitter.cpp181 const MCInstrDesc &Desc = MCII.get(Opcode); local
182 uint64_t TSFlags = Desc.TSFlags;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Mips/MCTargetDesc/
H A DMipsMCCodeEmitter.cpp121 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); local
122 uint64_t TSFlags = Desc.TSFlags;
130 int Size = 4; // FIXME: Have Desc.getSize() return the correct value!
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/
H A DTargetData.cpp159 std::string TargetData::parseSpecifier(StringRef Desc, TargetData *td) { argument
164 while (!Desc.empty()) {
165 std::pair<StringRef, StringRef> Split = Desc.split('-');
167 Desc = Split.second;
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/
H A DSubtargetFeature.cpp158 MaxCPULen, CPUTable[i].Key, CPUTable[i].Desc);
165 MaxFeatLen, FeatTable[i].Key, FeatTable[i].Desc);
/macosx-10.9.5/Security-55471.14.18/libsecurity_mds/lib/
H A DMDSSchema.cpp76 DB_ATTRIBUTE(Desc, STRING),
128 DB_ATTRIBUTE(Desc, STRING),
179 DB_ATTRIBUTE(Desc, STRING),
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DThumb2InstrInfo.cpp392 const MCInstrDesc &Desc = MI.getDesc();
393 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DLexicalScopes.cpp322 const MDNode *N = Desc;

Completed in 342 milliseconds

12