Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h37 unsigned IsSplit : 1; member
64 IsNest(0), IsReturned(0), IsSplit(0), IsInAlloca(0), in ArgFlagsTy()
132 bool isSplit() const { return IsSplit; } in isSplit()
133 void setSplit() { IsSplit = 1; } in setSplit()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp360 static void migrateDebugInfo(AllocaInst *OldAlloca, bool IsSplit, in migrateDebugInfo() argument
373 LLVM_DEBUG(dbgs() << " IsSplit: " << IsSplit << "\n"); in migrateDebugInfo()
407 if (IsSplit) { in migrateDebugInfo()
2699 bool IsSplit = false; member in __anonc3d49dbe0d11::AllocaSliceRewriter
2758 IsSplit = in visit()
2760 LLVM_DEBUG(dbgs() << " rewriting " << (IsSplit ? "split " : "")); in visit()
2776 assert(IsSplit || NewBeginOffset == BeginOffset); in visit()
2805 assert(IsSplit || BeginOffset == NewBeginOffset); in getNewAllocaSlicePtr()
2976 if (IsSplit) { in visitLoadInst()
3183 assert(!IsSplit); in visitMemSetInst()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp3925 bool IsSplit; member
3928 : MBB(mbb), Depth(depth), IsSplit(issplit) {} in MBBPriorityInfo()
3944 if (LHS->IsSplit != RHS->IsSplit) in compareMBBPriority()
3945 return LHS->IsSplit ? -1 : 1; in compareMBBPriority()