Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1024 FinalType = Arg.IndirectType; in lowerCallTo()
1067 unsigned FrameSize = DL.getTypeAllocSize(Arg.IndirectType); in lowerCallTo()
1072 MemAlign = Align(TLI.getByValTypeAlignment(Arg.IndirectType, DL)); in lowerCallTo()
H A DTargetLowering.cpp126 IndirectType = nullptr; in setAttributes()
130 IndirectType = Call->getParamByValType(ArgIdx); in setAttributes()
135 IndirectType = Call->getParamPreallocatedType(ArgIdx); in setAttributes()
137 IndirectType = Call->getParamInAllocaType(ArgIdx); in setAttributes()
139 IndirectType = Call->getParamStructRetType(ArgIdx); in setAttributes()
H A DSelectionDAGBuilder.cpp10345 CLI.getArgs()[0].IndirectType = CLI.RetTy; in LowerCallTo()
10411 FinalType = Args[i].IndirectType; in LowerCallTo()
10484 unsigned FrameSize = DL.getTypeAllocSize(Args[i].IndirectType); in LowerCallTo()
10491 MemAlign = Align(getByValTypeAlignment(Args[i].IndirectType, DL)); in LowerCallTo()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1648 Type *ETy = Args[i].IndirectType; in getPrototype()
1780 assert((!IsByVal || Args[i].IndirectType) && in LowerCall()
1782 Type *ETy = (IsByVal ? Args[i].IndirectType : Ty); in LowerCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp944 DAG.getDataLayout().getTypeAllocSize(CLI.getArgs()[0].IndirectType); in LowerCall_32()
2371 Entry.IndirectType = RetTy; in LowerF128Op()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h315 Type *IndirectType = nullptr; variable