HomeSort by relevance Sort by last modified time
    Searched defs:Desc (Results 1 - 23 of 23) sorted by null

  /external/llvm/lib/TableGen/
TableGenBackend.cpp 18 void TableGenBackend::EmitSourceFileHeader(const std::string &Desc,
21 " C++ -*-===//\n//\n// " << Desc << "\n//\n// Automatically generate"
  /external/llvm/include/llvm/MC/
MCInstrInfo.h 27 const MCInstrDesc *Desc; // Raw array to allow static init'n
28 unsigned NumOpcodes; // Number of entries in the desc array
34 Desc = D;
45 return Desc[Opcode];
SubtargetFeature.h 36 const char *Desc; // Help descriptor
MCRegisterInfo.h 140 const MCRegisterDesc *Desc; // Pointer to the descriptor array
156 Desc = D;
201 return Desc[RegNo];
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistry.h 86 StringRef Desc;
88 CheckerInfo(InitializationFunction fn, StringRef name, StringRef desc)
89 : Initialize(fn), FullName(name), Desc(desc) {}
104 StringRef desc);
109 void addChecker(StringRef fullName, StringRef desc) {
110 addChecker(&initializeManager<T>, fullName, desc);
  /external/javassist/src/main/javassist/runtime/
Desc.java 24 public class Desc {
57 + "' (Desc.useContextClassLoader: "
66 public static Class[] getParams(String desc) {
67 if (desc.charAt(0) != '(')
70 return getType(desc, desc.length(), 1, 0);
77 public static Class getType(String desc) {
78 Class[] result = getType(desc, desc.length(), 0, 0);
85 private static Class[] getType(String desc, int descLen
    [all...]
  /external/llvm/lib/Target/PTX/
PTXFPRoundingModePass.cpp 165 const RndModeDesc &Desc = Instrs[MI.getOpcode()];
167 MachineOperand &Op = MI.getOperand(Desc.first);
170 Op.setImm(Desc.second);
  /external/llvm/include/llvm/ADT/
Statistic.h 37 const char *Desc;
43 const char *getDesc() const { return Desc; }
46 void construct(const char *name, const char *desc) {
47 Name = name; Desc = desc;
120 #define STATISTIC(VARNAME, DESC) \
121 static llvm::Statistic VARNAME = { DEBUG_TYPE, DESC, 0, 0 }
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCCodeEmitter.cpp 183 const MCInstrDesc &Desc = MCII.get(Opcode);
184 uint64_t TSFlags = Desc.TSFlags;
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 299 const MCInstrDesc &Desc = MI->getDesc();
301 switch (Desc.TSFlags & MSP430II::SizeMask) {
303 switch (Desc.getOpcode()) {
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 71 void emitInstruction(MachineInstr &MI, const MCInstrDesc *Desc);
133 const MCInstrDesc &Desc = I->getDesc();
134 emitInstruction(*I, &Desc);
136 if (Desc.getOpcode() == X86::MOVPC32r)
151 const MCInstrDesc &Desc = MI.getDesc();
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.TSFlags & X86II::FormMask)
    [all...]
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 159 : 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.
  /external/llvm/include/llvm/Support/
Registry.h 22 const char *Name, *Desc;
27 : Name(N), Desc(D), Ctor(C)
31 const char *getDesc() const { return Desc; }
198 Add(const char *Name, const char *Desc)
199 : Entry(Name, Desc, CtorFn), Node(Entry) {}
CommandLine.h 271 // desc - Modifier to set the description shown in the -help output...
272 struct desc { struct in namespace:llvm::cl
273 const char *Desc;
274 desc(const char *Str) : Desc(Str) {} function in struct:llvm::cl::desc
275 void apply(Option &O) const { O.setDescription(Desc); }
281 const char *Desc;
282 value_desc(const char *Str) : Desc(Str) {}
283 void apply(Option &O) const { O.setValueStr(Desc); }
439 #define clEnumVal(ENUMVAL, DESC) #ENUMVAL, int(ENUMVAL), DES
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 121 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);
858 uint64_t TSFlags = Desc.TSFlags;
866 unsigned NumOps = Desc.getNumOperands()
    [all...]
  /external/llvm/utils/TableGen/
SubtargetEmitter.cpp 94 const std::string &Desc = Feature->getValueAsString("Desc");
101 << "\"" << Desc << "\", "
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 49 cl::desc("Force use of virtual base registers for stack load/store"));
52 cl::desc("Enable pre-regalloc stack frame index allocation"));
55 cl::desc("Enable use of a base pointer for complex stack frames"));
877 const MCInstrDesc &Desc = MI->getDesc();
878 unsigned AddrMode = (Desc.TSFlags & ARMII::AddrModeMask);
    [all...]
ARMExpandPseudoInsts.cpp 35 cl::desc("Verify machine code after expanding ARM pseudos"));
76 const MCInstrDesc &Desc = OldMI.getDesc();
77 for (unsigned i = Desc.getNumOperands(), e = OldMI.getNumOperands();
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 472 std::string Desc;
479 PathDiagnostic(StringRef bugtype, StringRef desc,
484 StringRef getDescription() const { return Desc; }
  /external/jhead/
jhead.h 155 char * Desc;
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 71 cl::desc("Disable cycle-level precision during preRA scheduling"));
77 cl::desc("Disable regpressure priority in sched=list-ilp"));
80 cl::desc("Disable live use priority in sched=list-ilp"));
83 cl::desc("Disable virtual register cycle interference checks"));
86 cl::desc("Disable physreg def-use affinity"));
89 cl::desc("Disable no-stall priority in sched=list-ilp"));
92 cl::desc("Disable critical path priority in sched=list-ilp"));
95 cl::desc("Disable scheduled-height priority in sched=list-ilp"));
99 cl::desc("Number of instructions to allow ahead of the critical path "
104 cl::desc("Average inst/cycle whan no target itinerary exists."))
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 694 milliseconds