Searched defs:AlwaysInline (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/Target/
H A DTargetSelectionDAGInfo.h50 /// If AlwaysInline is true, the size is constant and the target should not
54 /// for another call). If the target chooses to decline an AlwaysInline
61 bool AlwaysInline,
57 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp32 bool isVolatile, bool AlwaysInline,
30 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp33 bool isVolatile, bool AlwaysInline,
46 if (!AlwaysInline && SizeVal > Subtarget->getMaxInlineSizeThreshold())
29 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp31 bool IsVolatile, bool AlwaysInline,
29 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool IsVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp181 bool isVolatile, bool AlwaysInline,
190 if (!AlwaysInline && SizeVal > Subtarget->getMaxInlineSizeThreshold())
194 /// if calling the library is not allowed (AlwaysInline), then soldier on as
197 if (!AlwaysInline && (Align & 3) != 0)
263 Align, isVolatile, AlwaysInline,
178 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/include/llvm/IR/
H A DAttributes.h69 AlwaysInline, ///< inline=always enumerator in enum:llvm::Attribute::AttrKind
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3608 bool AlwaysInline,
3617 // TODO: In the AlwaysInline case, if the size is big then generate a loop
3636 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
3726 bool AlwaysInline,
3748 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
3889 unsigned Align, bool isVol, bool AlwaysInline,
3913 isVol, AlwaysInline,
3920 if (AlwaysInline) {
3921 assert(ConstantSize && "AlwaysInline requires a constant size!");
3604 getMemcpyLoadsAndStores(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, unsigned Align, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) argument
3722 getMemmoveLoadsAndStores(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, unsigned Align, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) argument
3887 getMemcpy(SDValue Chain, SDLoc dl, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) argument

Completed in 193 milliseconds