Home
last modified time | relevance | path

Searched refs:IsSplit (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h38 unsigned IsSplit : 1; member
65 IsByRef(0), IsNest(0), IsReturned(0), IsSplit(0), IsInAlloca(0), in ArgFlagsTy()
136 bool isSplit() const { return IsSplit; } in isSplit()
137 void setSplit() { IsSplit = 1; } in setSplit()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp353 static void migrateDebugInfo(AllocaInst *OldAlloca, bool IsSplit, in migrateDebugInfo() argument
366 LLVM_DEBUG(dbgs() << " IsSplit: " << IsSplit << "\n"); in migrateDebugInfo()
400 if (IsSplit) { in migrateDebugInfo()
2746 bool IsSplit = false; member in __anondf5662880e11::AllocaSliceRewriter
2805 IsSplit = in visit()
2807 LLVM_DEBUG(dbgs() << " rewriting " << (IsSplit ? "split " : "")); in visit()
2823 assert(IsSplit || NewBeginOffset == BeginOffset); in visit()
2852 assert(IsSplit || BeginOffset == NewBeginOffset); in getNewAllocaSlicePtr()
2958 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), SliceSize * 8) in visitLoadInst()
3026 if (IsSplit) { in visitLoadInst()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp3990 bool IsSplit; member
3993 : MBB(mbb), Depth(depth), IsSplit(issplit) {} in MBBPriorityInfo()
4009 if (LHS->IsSplit != RHS->IsSplit) in compareMBBPriority()
4010 return LHS->IsSplit ? -1 : 1; in compareMBBPriority()