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.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/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp349 static void migrateDebugInfo(AllocaInst *OldAlloca, bool IsSplit, in migrateDebugInfo() argument
362 LLVM_DEBUG(dbgs() << " IsSplit: " << IsSplit << "\n"); in migrateDebugInfo()
396 if (IsSplit) { in migrateDebugInfo()
2650 bool IsSplit = false; member in __anondf5662880d11::AllocaSliceRewriter
2709 IsSplit = in visit()
2711 LLVM_DEBUG(dbgs() << " rewriting " << (IsSplit ? "split " : "")); in visit()
2727 assert(IsSplit || NewBeginOffset == BeginOffset); in visit()
2756 assert(IsSplit || BeginOffset == NewBeginOffset); in getNewAllocaSlicePtr()
2862 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), SliceSize * 8) in visitLoadInst()
2931 if (IsSplit) { in visitLoadInst()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp3932 bool IsSplit; member
3935 : MBB(mbb), Depth(depth), IsSplit(issplit) {} in MBBPriorityInfo()
3951 if (LHS->IsSplit != RHS->IsSplit) in compareMBBPriority()
3952 return LHS->IsSplit ? -1 : 1; in compareMBBPriority()