Searched defs:Desc (Results 1 - 25 of 29) sorted by relevance

12

/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp18 void TableGenBackend::EmitSourceFileHeader(const std::string &Desc, argument
21 " C++ -*-===//\n//\n// " << Desc << "\n//\n// Automatically generate" local
/external/javassist/src/main/javassist/runtime/
H A DDesc.java24 public class Desc { class
57 + "' (Desc.useContextClassLoader: "
/external/llvm/include/llvm/MC/
H A DMCInstrInfo.h27 const MCInstrDesc *Desc; // Raw array to allow static init'n member in class:llvm::MCInstrInfo
34 Desc = D;
45 return Desc[Opcode];
H A DSubtargetFeature.h36 const char *Desc; // Help descriptor member in struct:llvm::SubtargetFeatureKV
H A DMCRegisterInfo.h140 const MCRegisterDesc *Desc; // Pointer to the descriptor array member in class:llvm::MCRegisterInfo
156 Desc = D;
201 return Desc[RegNo];
/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerRegistry.h86 StringRef Desc; member in struct:clang::ento::CheckerRegistry::CheckerInfo
89 : Initialize(fn), FullName(name), Desc(desc) {}
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp35 void AsmPrinter::EmitSLEB128(int Value, const char *Desc) const {
36 if (isVerbose() && Desc)
37 OutStreamer.AddComment(Desc);
58 void AsmPrinter::EmitULEB128(unsigned Value, const char *Desc, argument
60 if (isVerbose() && Desc)
61 OutStreamer.AddComment(Desc);
125 /// describing the encoding. Desc is an optional string saying what the
127 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const {
129 if (Desc != 0)
130 OutStreamer.AddComment(Twine(Desc)
[all...]
/external/llvm/lib/Target/PTX/
H A DPTXFPRoundingModePass.cpp165 const RndModeDesc &Desc = Instrs[MI.getOpcode()]; local
167 MachineOperand &Op = MI.getOperand(Desc.first);
170 Op.setImm(Desc.second);
/external/llvm/include/llvm/ADT/
H A DStatistic.h37 const char *Desc; member in class:llvm::Statistic
43 const char *getDesc() const { return Desc; }
47 Name = name; Desc = desc;
/external/llvm/lib/Analysis/
H A DAliasAnalysisCounter.cpp43 void printLine(const char *Desc, unsigned Val, unsigned Sum) { argument
44 errs() << " " << Val << " " << Desc << " responses ("
/external/llvm/lib/Target/MBlaze/MCTargetDesc/
H A DMBlazeMCCodeEmitter.cpp183 const MCInstrDesc &Desc = MCII.get(Opcode); local
184 uint64_t TSFlags = Desc.TSFlags;
/external/llvm/lib/Target/MSP430/
H A DMSP430InstrInfo.cpp299 const MCInstrDesc &Desc = MI->getDesc(); local
301 switch (Desc.TSFlags & MSP430II::SizeMask) {
303 switch (Desc.getOpcode()) {
/external/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h159 : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(A),
169 const MDNode *getDesc() const { return Desc; }
171 const MDNode *getScopeNode() const { return Desc; }
231 AssertingVH<const MDNode> Desc; // Debug info descriptor. member in class:llvm::LexicalScope
/external/llvm/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; }
198 Add(const char *Name, const char *Desc) argument
199 : Entry(Name, Desc, CtorFn), Node(Entry) {}
H A DTargetRegistry.h785 RegisterTarget(Target &T, const char *Name, const char *Desc) { argument
786 TargetRegistry::RegisterTarget(T, Name, Desc,
H A DCommandLine.h273 const char *Desc; member in struct:llvm::cl::desc
274 desc(const char *Str) : Desc(Str) {}
275 void apply(Option &O) const { O.setDescription(Desc); }
281 const char *Desc; member in struct:llvm::cl::value_desc
282 value_desc(const char *Str) : Desc(Str) {}
283 void apply(Option &O) const { O.setValueStr(Desc); }
456 ValuesClass(const char *EnumName, DataType Val, const char *Desc, argument
459 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc)));
481 const char *Desc, ...) {
483 va_start(ValueArgs, Desc);
480 values(const char *Arg, DataType Val, const char *Desc, ...) argument
[all...]
/external/llvm/lib/Target/X86/
H A DX86CodeEmitter.cpp71 void emitInstruction(MachineInstr &MI, const MCInstrDesc *Desc);
133 const MCInstrDesc &Desc = I->getDesc(); local
134 emitInstruction(*I, &Desc);
136 if (Desc.getOpcode() == X86::MOVPC32r)
151 const MCInstrDesc &Desc = MI.getDesc(); local
154 if ((Desc.TSFlags & X86II::FormMask) == X86II::Pseudo)
156 if (Desc.TSFlags & X86II::REX_W)
159 unsigned NumOps = Desc.getNumOperands();
162 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
175 switch (Desc
[all...]
/external/llvm/lib/Target/
H A DTargetData.cpp134 void TargetData::init(StringRef Desc) { argument
156 while (!Desc.empty()) {
157 std::pair<StringRef, StringRef> Split = Desc.split('-');
159 Desc = Split.second;
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp121 const MCInst &MI, const MCInstrDesc &Desc,
129 const MCInst &MI, const MCInstrDesc &Desc,
387 const MCInstrDesc &Desc,
635 const MCInstrDesc &Desc) {
645 Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1;
762 const MCInstrDesc &Desc,
826 if (unsigned REX = DetermineREXPrefix(MI, TSFlags, Desc))
857 const MCInstrDesc &Desc = MCII.get(Opcode); local
858 uint64_t TSFlags = Desc.TSFlags;
866 unsigned NumOps = Desc
634 DetermineREXPrefix(const MCInst &MI, uint64_t TSFlags, const MCInstrDesc &Desc) argument
760 EmitOpcodePrefix(uint64_t TSFlags, unsigned &CurByte, int MemOperand, const MCInst &MI, const MCInstrDesc &Desc, raw_ostream &OS) const argument
[all...]
/external/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp94 const std::string &Desc = Feature->getValueAsString("Desc"); local
101 << "\"" << Desc << "\", "
/external/llvm/lib/Target/ARM/
H A DARMExpandPseudoInsts.cpp76 const MCInstrDesc &Desc = OldMI.getDesc(); local
77 for (unsigned i = Desc.getNumOperands(), e = OldMI.getNumOperands();
H A DARMBaseRegisterInfo.cpp877 const MCInstrDesc &Desc = MI->getDesc(); local
878 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
1068 const MCInstrDesc &Desc = MI->getDesc(); local
1069 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h472 std::string Desc; member in class:clang::ento::PathDiagnostic
484 StringRef getDescription() const { return Desc; }
/external/jhead/
H A Djhead.h155 char * Desc; member in struct:__anon5444
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp1446 const MCInstrDesc &Desc = MCII.get(MI.getOpcode()); local
1447 uint64_t TSFlags = Desc.TSFlags;
1452 if (Desc.getSize() == 2 || Desc.getSize() == 4)
1453 Size = Desc.getSize();

Completed in 3349 milliseconds

12