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

1 2

  /external/llvm/include/llvm/
Constant.h 46 Constant(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps)
47 : User(ty, vty, Ops, NumOps) {}
InlineAsm.h 220 static unsigned getFlagWord(unsigned Kind, unsigned NumOps) {
221 assert(((NumOps << 3) & ~0xffff) == 0 && "Too many inline asm operands!");
223 return Kind | (NumOps << 3);
User.h 50 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps)
51 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
GlobalValue.h 60 GlobalValue(Type *ty, ValueTy vty, Use *Ops, unsigned NumOps,
62 : Constant(ty, vty, Ops, NumOps), Parent(0),
Instruction.h 375 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
377 Instruction(Type *Ty, unsigned iType, Use *Ops, unsigned NumOps,
InstrTypes.h 38 Use *Ops, unsigned NumOps,
40 : Instruction(Ty, iType, Ops, NumOps, InsertBefore) {}
43 Use *Ops, unsigned NumOps, BasicBlock *InsertAtEnd)
44 : Instruction(Ty, iType, Ops, NumOps, InsertAtEnd) {}
    [all...]
Constants.h 594 ConstantExpr(Type *ty, unsigned Opcode, Use *Ops, unsigned NumOps)
595 : Constant(ty, ConstantExprVal, Ops, NumOps) {
    [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 159 unsigned NumOps = Desc.getNumOperands();
160 if (NumOps) {
161 bool isTwoAddr = NumOps > 1 &&
166 for (unsigned e = NumOps; i != e; ++i) {
184 for (unsigned e = NumOps; i != e; ++i) {
196 for (; i != NumOps; ++i) {
213 if (NumOps > e && X86InstrInfo::isX86_64ExtendedReg(MI.getOperand(e)))
230 for (unsigned e = NumOps; i != e; ++i) {
701 unsigned NumOps = Desc->getNumOperands();
703 if (NumOps > 1 && Desc->getOperandConstraint(1, MCOI::TIED_TO) != -1
    [all...]
X86FloatingPoint.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 520 const SDUse *Ops, unsigned NumOps);
522 const SDValue *Ops, unsigned NumOps);
525 const SDValue *Ops, unsigned NumOps);
527 const SDValue *Ops, unsigned NumOps);
529 const SDValue *Ops, unsigned NumOps);
630 const SDValue *Ops, unsigned NumOps,
636 const SDValue *Ops, unsigned NumOps,
642 const SDValue *Ops, unsigned NumOps,
646 SDValue getMergeValues(const SDValue *Ops, unsigned NumOps, DebugLoc dl);
716 const SDValue *Ops, unsigned NumOps);
    [all...]
SelectionDAGNodes.h 678 unsigned NumOps)
681 OperandList(NumOps ? new SDUse[NumOps] : 0),
683 NumOperands(NumOps), NumValues(VTs.NumVTs),
685 for (unsigned i = 0; i != NumOps; ++i) {
896 unsigned NumOps, EVT MemoryVT, MachineMemOperand *MMO);
    [all...]
SelectionDAGISel.h 279 const SDValue *Ops, unsigned NumOps, unsigned EmitNodeInfo);
  /external/llvm/lib/CodeGen/
CallingConvLower.cpp 122 unsigned NumOps = Outs.size();
123 for (unsigned i = 0; i != NumOps; ++i) {
141 unsigned NumOps = ArgVTs.size();
142 for (unsigned i = 0; i != NumOps; ++i) {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 642 unsigned NumOps = MI.getNumOperands();
644 bool isTwoAddr = NumOps > 1 &&
649 for (; i != NumOps; ++i) {
667 for (; i != NumOps; ++i) {
679 for (; i != NumOps; ++i) {
696 if (NumOps > e && MI.getOperand(e).isReg() &&
715 for (unsigned e = NumOps; i != e; ++i) {
866 unsigned NumOps = Desc.getNumOperands();
868 if (NumOps > 1 && Desc.getOperandConstraint(1, MCOI::TIED_TO) != -1)
870 else if (NumOps > 2 && Desc.getOperandConstraint(NumOps-1, MCOI::TIED_TO)== 0
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 629 unsigned NumOps = MCID.getNumOperands();
630 HasCC = (MI->getOperand(NumOps-1).getReg() == ARM::CPSR);
631 if (HasCC && MI->getOperand(NumOps-1).isDead())
655 unsigned NumOps = MCID.getNumOperands();
657 if (i < NumOps && MCID.OpInfo[i].isOptionalDef())
719 unsigned NumOps = MCID.getNumOperands();
720 HasCC = (MI->getOperand(NumOps-1).getReg() == ARM::CPSR);
721 if (HasCC && MI->getOperand(NumOps-1).isDead())
745 unsigned NumOps = MCID.getNumOperands();
747 if (i < NumOps && MCID.OpInfo[i].isOptionalDef()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 329 const SDValue *Ops, unsigned NumOps) {
330 for (; NumOps; --NumOps, ++Ops) {
339 const SDUse *Ops, unsigned NumOps) {
340 for (; NumOps; --NumOps, ++Ops) {
736 const SDValue *Ops,unsigned NumOps,
742 AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
    [all...]
LegalizeTypes.cpp 419 for (unsigned i = 0, NumOps = I->getNumOperands(); i < NumOps; ++i)
    [all...]
InstrEmitter.cpp 570 unsigned NumOps = Node->getNumOperands();
571 assert((NumOps & 1) == 1 &&
574 for (unsigned i = 1; i != NumOps; ++i) {
    [all...]
ScheduleDAGFast.cpp 482 unsigned NumOps = Node->getNumOperands();
483 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
484 --NumOps; // Ignore the glue operand.
486 for (unsigned i = InlineAsm::Op_FirstOperand; i != NumOps;) {
  /external/llvm/lib/VMCore/
Instruction.cpp 23 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
25 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
37 Instruction::Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps,
39 : User(ty, Value::InstructionVal + it, Ops, NumOps), Parent(0) {
Instructions.cpp 143 unsigned NumOps = e + e / 2;
144 if (NumOps < 2) NumOps = 2; // 2 op PHI nodes are VERY common.
149 ReservedSpace = NumOps;
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 352 unsigned NumOps = NumInstOpsHandled[InstIdxs[i]];
353 assert(NumOps <= Inst->Operands.size() &&
356 Inst->Operands.begin()+NumOps);
765 unsigned NumOps = 0;
769 ++NumOps;
773 return NumOps;
777 unsigned NumOps = 0;
789 ++NumOps;
794 return NumOps;
    [all...]
CodeGenInstruction.cpp 71 unsigned NumOps = 1;
92 NumOps = NumArgs;
117 OperandType, MIOperandNo, NumOps,
119 MIOperandNo += NumOps;
DAGISelMatcherEmitter.cpp 647 unsigned NumOps = P.getNumOperands();
650 ++NumOps; // Get the chained node too.
653 OS << " Result.resize(NextRes+" << NumOps << ");\n";
668 for (unsigned i = 0; i != NumOps; ++i)
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp     [all...]

Completed in 404 milliseconds

1 2