HomeSort by: relevance | last modified time | path
    Searched refs:IsSplit (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetCallingConv.h 37 unsigned IsSplit : 1;
63 IsNest(0), IsReturned(0), IsSplit(0), IsInAlloca(0),
132 bool isSplit() const { return IsSplit; }
133 void setSplit() { IsSplit = 1; }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 2319 bool IsSplit = false;
2368 IsSplit =
2370 LLVM_DEBUG(dbgs() << " rewriting " << (IsSplit ? "split " : ""));
2410 assert(IsSplit || BeginOffset == NewBeginOffset);
2514 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), SliceSize * 8)
2581 if (IsSplit) {
2785 assert(!IsSplit);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegisterCoalescer.cpp 3728 bool IsSplit;
3730 MBBPriorityInfo(MachineBasicBlock *mbb, unsigned depth, bool issplit)
3731 : MBB(mbb), Depth(depth), IsSplit(issplit) {}
3747 if (LHS->IsSplit != RHS->IsSplit)
3748 return LHS->IsSplit ? -1 : 1;

Completed in 26 milliseconds