/external/llvm/include/llvm/CodeGen/ |
H A D | TargetSchedule.h | 106 const MCProcResourceDesc *getProcResource(unsigned PIdx) const { 107 return SchedModel.getProcResource(PIdx); 111 const char *getResourceName(unsigned PIdx) const { 112 if (!PIdx) 114 return SchedModel.getProcResource(PIdx)->Name; 153 int getResourceBufferSize(unsigned PIdx) const { 154 return SchedModel.getProcResource(PIdx)->BufferSize;
|
H A D | MachineScheduler.h | 721 unsigned getNextResourceCycle(unsigned PIdx, unsigned Cycles); 737 void incExecutedResources(unsigned PIdx, unsigned Count); 739 unsigned countResource(unsigned PIdx, unsigned Cycles, unsigned ReadyCycle);
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
H A D | ARMBaseInstrInfo.h | 73 int PIdx = MI->findFirstPredOperandIdx(); local 74 return PIdx != -1 && MI->getOperand(PIdx).getImm() != ARMCC::AL; 78 int PIdx = MI->findFirstPredOperandIdx(); local 79 return PIdx != -1 ? (ARMCC::CondCodes)MI->getOperand(PIdx).getImm()
|
H A D | ARMBaseRegisterInfo.cpp | 873 int PIdx = Old->findFirstPredOperandIdx(); local 874 ARMCC::CondCodes Pred = (PIdx == -1) 875 ? ARMCC::AL : (ARMCC::CondCodes)Old->getOperand(PIdx).getImm(); 1201 int PIdx = MI.findFirstPredOperandIdx(); local 1202 ARMCC::CondCodes Pred = (PIdx == -1) 1203 ? ARMCC::AL : (ARMCC::CondCodes)MI.getOperand(PIdx).getImm(); 1204 unsigned PredReg = (PIdx == -1) ? 0 : MI.getOperand(PIdx+1).getReg();
|
H A D | Thumb1RegisterInfo.cpp | 649 int PIdx = MI.findFirstPredOperandIdx(); 650 if (PIdx != -1) 651 removeOperands(MI, PIdx);
|
H A D | ARMBaseInstrInfo.cpp | 454 int PIdx = MI->findFirstPredOperandIdx(); local 455 if (PIdx != -1) { 456 MachineOperand &PMO = MI->getOperand(PIdx); 458 MI->getOperand(PIdx+1).setReg(Pred[1].getReg()); 1434 int PIdx = MI->findFirstPredOperandIdx(); local 1435 if (PIdx == -1) { 1440 PredReg = MI->getOperand(PIdx+1).getReg(); 1441 return (ARMCC::CondCodes)MI->getOperand(PIdx).getImm();
|
/external/capstone/arch/XCore/ |
H A D | XCoreGenDisassemblerTables.inc | 776 unsigned Start, Len, NumToSkip, PIdx, Opc, DecodeIdx; \ 812 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 816 Pred = checkDecoderPredicate(PIdx, Bits); \
|
/external/llvm/lib/CodeGen/ |
H A D | MachineScheduler.cpp | 1799 unsigned PIdx = PI->ProcResourceIdx; local 1800 unsigned Factor = SchedModel->getResourceFactor(PIdx); 1801 RemainingCounts[PIdx] += (Factor * PI->Cycles); 1838 getNextResourceCycle(unsigned PIdx, unsigned Cycles) { argument 1839 unsigned NextUnreserved = ReservedCycles[PIdx]; 1926 for (unsigned PIdx = 1, PEnd = SchedModel->getNumProcResourceKinds(); 1927 PIdx != PEnd; ++PIdx) { 1928 unsigned OtherCount = getResourceCount(PIdx) + Rem->RemainingCounts[PIdx]; 2021 incExecutedResources(unsigned PIdx, unsigned Count) argument 2035 countResource(unsigned PIdx, unsigned Cycles, unsigned NextCycle) argument 2143 unsigned PIdx = PI->ProcResourceIdx; local [all...] |
H A D | InlineSpiller.cpp | 1119 SlotIndex PIdx = LIS.getInstructionIndex(*PrevSpill); local 1121 MachineInstr *SpillToRm = (CIdx > PIdx) ? CurrentSpill : PrevSpill; 1122 MachineInstr *SpillToKeep = (CIdx > PIdx) ? PrevSpill : CurrentSpill;
|
/external/llvm/utils/TableGen/ |
H A D | CodeGenSchedule.cpp | 870 for (unsigned PIdx = 0, PEnd = ProcModels.size(); PIdx != PEnd; ++PIdx) { 871 const CodeGenProcModel &PM = ProcModels[PIdx]; 886 IdxVec ProcIndices(1, PIdx); 909 unsigned PIdx = getProcModel(Rec->getValueAsDef("SchedModel")).Index; 910 IdxVec ProcIndices(1, PIdx); 1603 for (unsigned PIdx = 0, PEnd = ProcModels.size(); PIdx != PEnd; ++PIdx) { [all...] |
H A D | CodeGenSchedule.h | 437 void addWriteRes(Record *ProcWriteResDef, unsigned PIdx); 439 void addReadAdvance(Record *ProcReadAdvanceDef, unsigned PIdx);
|
H A D | FixedLenDecoderEmitter.cpp | 1207 unsigned PIdx = getPredicateIndex(TableInfo, PS.str()); 1210 encodeULEB128(PIdx, S); 2122 << " unsigned PIdx = decodeULEB128(++Ptr, &Len);\n" 2129 << " if (!(Pred = checkDecoderPredicate(PIdx, Bits)))\n" 2132 << " DEBUG(dbgs() << Loc << \": OPC_CheckPredicate(\" << PIdx << \"): \"\n"
|
/external/llvm/lib/Target/ARM/ |
H A D | ARMBaseInstrInfo.h | 139 int PIdx = MI.findFirstPredOperandIdx(); local 140 return PIdx != -1 ? (ARMCC::CondCodes)MI.getOperand(PIdx).getImm()
|
H A D | ARMBaseRegisterInfo.cpp | 761 int PIdx = MI.findFirstPredOperandIdx(); local 762 ARMCC::CondCodes Pred = (PIdx == -1) 763 ? ARMCC::AL : (ARMCC::CondCodes)MI.getOperand(PIdx).getImm(); 764 unsigned PredReg = (PIdx == -1) ? 0 : MI.getOperand(PIdx+1).getReg();
|
H A D | ThumbRegisterInfo.cpp | 564 int PIdx = MI.findFirstPredOperandIdx(); local 565 if (PIdx != -1) 566 removeOperands(MI, PIdx);
|
H A D | ARMBaseInstrInfo.cpp | 462 int PIdx = I->findFirstPredOperandIdx(); local 463 if (PIdx != -1 && I->getOperand(PIdx).getImm() != ARMCC::AL) 469 int PIdx = MI.findFirstPredOperandIdx(); local 470 return PIdx != -1 && MI.getOperand(PIdx).getImm() != ARMCC::AL; 484 int PIdx = MI.findFirstPredOperandIdx(); local 485 if (PIdx != -1) { 486 MachineOperand &PMO = MI.getOperand(PIdx); 488 MI.getOperand(PIdx 1778 int PIdx = MI.findFirstPredOperandIdx(); local [all...] |
H A D | ARMFrameLowering.cpp | 1766 int PIdx = Old.findFirstPredOperandIdx(); local 1768 (PIdx == -1) ? ARMCC::AL 1769 : (ARMCC::CondCodes)Old.getOperand(PIdx).getImm();
|
/external/clang/lib/Analysis/ |
H A D | ThreadSafetyCommon.cpp | 688 for (unsigned PIdx = 0; PIdx < ArgIndex; ++PIdx) 689 Ph->values()[PIdx] = CurrE;
|
/external/capstone/arch/Sparc/ |
H A D | SparcGenDisassemblerTables.inc | 1955 unsigned Start, Len, NumToSkip, PIdx, Opc, DecodeIdx; \ 1991 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 1995 Pred = checkDecoderPredicate(PIdx, Bits); \
|
/external/llvm/lib/Target/AMDGPU/ |
H A D | R600InstrInfo.cpp | 992 int PIdx = MI.findFirstPredOperandIdx(); 1013 if (PIdx != -1) { 1014 MachineOperand &PMO = MI.getOperand(PIdx);
|
/external/capstone/arch/PowerPC/ |
H A D | PPCGenDisassemblerTables.inc | 3204 unsigned Start, Len, NumToSkip, PIdx, Opc, DecodeIdx; \ 3240 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 3244 Pred = checkDecoderPredicate(PIdx, Bits); \
|
/external/capstone/arch/AArch64/ |
H A D | AArch64GenDisassemblerTables.inc | 12677 unsigned Start, Len, NumToSkip, PIdx, Opc, DecodeIdx; \ 12713 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 12717 Pred = checkDecoderPredicate(PIdx, Bits); \
|
/external/capstone/arch/SystemZ/ |
H A D | SystemZGenDisassemblerTables.inc | 2946 unsigned Start, Len, NumToSkip, PIdx, Opc, DecodeIdx; \ 2982 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 2986 Pred = checkDecoderPredicate(PIdx, Bits); \
|
/external/capstone/arch/ARM/ |
H A D | ARMGenDisassemblerTables.inc | 13462 unsigned Start, Len, NumToSkip, PIdx, Opc, DecodeIdx; \ 13498 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 13502 Pred = checkDecoderPredicate(PIdx, Bits); \
|
/external/capstone/arch/Mips/ |
H A D | MipsGenDisassemblerTables.inc | 6516 unsigned Start, Len, NumToSkip, PIdx, Opc, DecodeIdx; \ 6552 PIdx = (uint32_t)decodeULEB128(++Ptr, &Len); \ 6556 Pred = checkDecoderPredicate(PIdx, Bits); \
|