Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp1037 FinalType = Arg.IndirectType; in lowerCallTo()
1080 unsigned FrameSize = DL.getTypeAllocSize(Arg.IndirectType); in lowerCallTo()
1085 MemAlign = Align(TLI.getByValTypeAlignment(Arg.IndirectType, DL)); in lowerCallTo()
H A DTargetLowering.cpp127 IndirectType = nullptr; in setAttributes()
131 IndirectType = Call->getParamByValType(ArgIdx); in setAttributes()
136 IndirectType = Call->getParamPreallocatedType(ArgIdx); in setAttributes()
138 IndirectType = Call->getParamInAllocaType(ArgIdx); in setAttributes()
140 IndirectType = Call->getParamStructRetType(ArgIdx); in setAttributes()
H A DSelectionDAGBuilder.cpp10865 CLI.getArgs()[0].IndirectType = CLI.RetTy; in LowerCallTo()
10931 FinalType = Args[i].IndirectType; in LowerCallTo()
11004 unsigned FrameSize = DL.getTypeAllocSize(Args[i].IndirectType); in LowerCallTo()
11011 MemAlign = Align(getByValTypeAlignment(Args[i].IndirectType, DL)); in LowerCallTo()
/src/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp943 DAG.getDataLayout().getTypeAllocSize(CLI.getArgs()[0].IndirectType); in LowerCall_32()
2363 Entry.IndirectType = RetTy; in LowerF128Op()
/src/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1479 Type *ETy = Args[i].IndirectType; in getPrototype()
1709 assert((!IsByVal || Args[i].IndirectType) && in LowerCall()
1711 Type *ETy = (IsByVal ? Args[i].IndirectType : Ty); in LowerCall()
/src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h317 Type *IndirectType = nullptr; variable