Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/bolt/lib/Profile/
H A DBoltAddressTranslation.cpp72 const bool IsSplit = Function.isSplit(); in write() local
74 if (IsSplit && BB->isCold()) in write()
80 if (!IsSplit) in write()
/llvm-project-15.0.7/bolt/test/X86/
H A Dsplit-random.s10 # CHECK: IsSplit :
/llvm-project-15.0.7/bolt/test/runtime/X86/
H A Dpie-exceptions-failed-split.test17 CHECK: IsSplit :
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2294 bool IsSplit = false; member in llvm::sroa::AllocaSliceRewriter
2343 IsSplit = in visit()
2345 LLVM_DEBUG(dbgs() << " rewriting " << (IsSplit ? "split " : "")); in visit()
2385 assert(IsSplit || BeginOffset == NewBeginOffset); in getNewAllocaSlicePtr()
2491 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), SliceSize * 8) in visitLoadInst()
2560 if (IsSplit) { in visitLoadInst()
2764 assert(!IsSplit); in visitMemSetInst()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp3845 bool IsSplit; member
3848 : MBB(mbb), Depth(depth), IsSplit(issplit) {} in MBBPriorityInfo()
3864 if (LHS->IsSplit != RHS->IsSplit) in compareMBBPriority()
3865 return LHS->IsSplit ? -1 : 1; in compareMBBPriority()