Searched defs:RCount (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2837 unsigned RCount = FnBeginRegionCount.back(); local
2838 assert(RCount <= LexicalBlockStack.size() && "Region stack mismatch");
2841 while (LexicalBlockStack.size() != RCount) {
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp665 unsigned RCount = SelectInt64CountDirect(RImm) + 1; local
666 Count = std::min(Count, RCount);
676 RCount = SelectInt64CountDirect(RImmWithOnes) + 1;
677 Count = std::min(Count, RCount);
771 unsigned RCount = SelectInt64CountDirect(RImm) + 1; local
772 if (RCount < Count) {
773 Count = RCount;
794 RCount = SelectInt64CountDirect(RImmWithOnes) + 1;
795 if (RCount < Count) {
796 Count = RCount;
[all...]

Completed in 107 milliseconds