HomeSort by relevance Sort by last modified time
    Searched refs:NumDefs (Results 1 - 25 of 39) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 147 unsigned NumDefs = 0;
148 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
149 ++NumDefs)
150 assert(NumDefs != NumOperands-2 && "No asm string?");
152 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
155 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
PeepholeOptimizer.cpp 269 unsigned NumDefs = MI->getDesc().getNumDefs();
270 unsigned NumSrcs = MI->getDesc().getNumOperands() - NumDefs;
271 if (NumDefs != 1)
276 for (unsigned i = 0, e = NumDefs + NumSrcs; i != e; ++i) {
299 NumDefs = DefMI->getDesc().getNumDefs();
300 NumSrcs = DefMI->getDesc().getNumOperands() - NumDefs;
301 if (NumDefs != 1)
303 for (unsigned i = 0, e = NumDefs + NumSrcs; i != e; ++i) {
MachineCSE.cpp 424 unsigned NumDefs = MI->getDesc().getNumDefs();
425 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
452 --NumDefs;
  /external/llvm/lib/MC/
MCInstrDesc.cpp 65 for (int i = 0, e = NumDefs; i != e; ++i)
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 434 unsigned NumDefs = 0;
435 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
436 ++NumDefs)
437 assert(NumDefs != MI->getNumOperands()-2 && "No asm string?");
439 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
442 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInstrDesc.h 137 unsigned short NumDefs; // Num of args that are definitions
184 return NumDefs;
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 142 unsigned char NumDefs; // Num of args that are definitions
191 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCInstrDesc.h 167 unsigned char NumDefs; // Num of args that are definitions
216 unsigned getNumDefs() const { return NumDefs; }
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 753 unsigned NumDefs = II.getNumDefs();
764 NumDefs = NumResults;
771 countOperands(Node, II.getNumOperands() - NumDefs, NumImpUses);
772 bool HasPhysRegOuts = NumResults > NumDefs && II.getImplicitDefs()!=nullptr;
795 bool HasOptPRefs = NumDefs > NumResults;
798 unsigned NumSkip = HasOptPRefs ? NumDefs - NumResults : 0;
800 AddOperand(MIB, Node->getOperand(i), i-NumSkip+NumDefs, &II,
    [all...]
ScheduleDAGRRList.cpp     [all...]
  /external/llvm/lib/CodeGen/
ImplicitNullChecks.cpp 492 unsigned NumDefs = LoadMI->getDesc().getNumDefs();
493 assert(NumDefs <= 1 && "other cases unhandled!");
496 if (NumDefs != 0) {
MachineCSE.cpp 532 unsigned NumDefs = MI->getDesc().getNumDefs() +
535 for (unsigned i = 0, e = MI->getNumOperands(); NumDefs && i != e; ++i) {
553 --NumDefs;
577 --NumDefs;
PeepholeOptimizer.cpp     [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenInstruction.cpp 41 NumDefs = OutDI->getNumArgs();
55 if (i < NumDefs) {
59 ArgInit = InDI->getArg(i-NumDefs);
60 ArgName = InDI->getArgName(i-NumDefs);
CodeGenInstruction.h 130 /// NumDefs - Number of def operands declared, this is the number of
133 unsigned NumDefs;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]
  /external/llvm/utils/TableGen/
CodeGenInstruction.cpp 41 NumDefs = OutDI->getNumArgs();
57 if (i < NumDefs) {
61 ArgInit = InDI->getArg(i-NumDefs);
62 ArgName = InDI->getArgName(i-NumDefs);
CodeGenInstruction.h 130 /// NumDefs - Number of def operands declared, this is the number of
133 unsigned NumDefs;

Completed in 1379 milliseconds

1 2