Home | History | Annotate | Download | only in ARM

Lines Matching refs:CPE

82   ///   CPE     - A constant pool entry that has been placed somewhere, which
484 const CPEntry & CPE = CPEntries[i][j];
485 AFI->recordCPEClone(i, CPE.CPI);
506 // Create the basic block to hold the CPE's.
528 // identity mapping of CPI's to CPE's.
611 assert(isPowerOf2_32(Align) && "Invalid CPE alignment");
784 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
785 assert(CPE && "Cannot find a corresponding CPEntry!");
786 CPE->RefCount++;
988 /// isWaterInRange - Returns true if a CPE placed after the specified
991 /// Compute how much the function will grow by inserting a CPE after Water.
1009 // The CPE may be able to hide in the alignment padding before the next
1014 // Compute the padding that would go at the end of the CPE to align the next
1018 // If the CPE is to be inserted before the instruction, that will raise
1020 // in blocks between CPE and the user.
1024 // CPE fits in existing padding.
1041 dbgs() << "User of CPE#" << CPEMI->getOperand(0).getImm()
1046 << format("CPE address=%#x offset=%+d: ", CPEOffset,
1101 CPEntry *CPE = findConstPoolEntry(CPI, CPEMI);
1102 assert(CPE && "Unexpected!");
1103 if (--CPE->RefCount == 0) {
1105 CPE->CPEMI = NULL;
1112 /// LookForCPEntryInRange - see if the currently referenced CPE is in range;
1113 /// if not, see if an in-range clone of the CPE is in range, and if so,
1123 // Check to see if the CPE is already in-range.
1130 // No. Look for previously created clones of the CPE that are in range.
1142 DEBUG(dbgs() << "Replacing CPE#" << CPI << " with CPE#"
1178 /// we can place the CPE referenced from U so it's within range of U's MI.
1182 /// terminates, the CPE location for a particular CPUser is only allowed to
1223 /// CPUsers[CPUserIndex], so create a place to put the CPE. The end of the
1246 // Compute the offset where the CPE will begin.
1251 << format(", expected CPE offset %#x\n", CPEOffset));
1275 // entries are 4 bytes: if instruction I references island CPE, and
1276 // instruction I+1 references CPE', it will not work well to put CPE as far
1277 // forward as possible, since then CPE' cannot immediately follow it (that
1278 // location is 2 bytes farther away from I+1 than CPE was from I) and we'd
1377 // No existing clone of this CPE is within range.
1381 // Look for water where we can place this CPE.
1395 // The new CPE goes before the following block (NewMBB).
1419 // considerably reduces the number of times we have to move the same CPE
1433 // Now that we have an island to add the CPE to, clone the original CPE and
1455 DEBUG(dbgs() << " Moved CPE to #" << ID << " CPI=" << CPI