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

/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.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/XCore/
H A DXCoreSelectionDAGInfo.cpp28 bool isVolatile, bool AlwaysInline,
34 if (!AlwaysInline && (Align & 3) == 0 &&
26 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/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/ARM/
H A DARMSelectionDAGInfo.cpp32 bool isVolatile, bool AlwaysInline,
46 if (!AlwaysInline && SizeVal > Subtarget.getMaxInlineSizeThreshold())
28 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.cpp58 bool IsVolatile, bool AlwaysInline,
56 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.cpp179 bool isVolatile, bool AlwaysInline,
189 if (!AlwaysInline && SizeVal > Subtarget.getMaxInlineSizeThreshold())
193 /// if calling the library is not allowed (AlwaysInline), then soldier on as
196 if (!AlwaysInline && (Align & 3) != 0)
261 Align, isVolatile, AlwaysInline,
176 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.h70 AlwaysInline, ///< inline=always enumerator in enum:llvm::Attribute::AttrKind
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3887 bool AlwaysInline,
3896 // TODO: In the AlwaysInline case, if the size is big then generate a loop
3915 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
4004 bool AlwaysInline,
4026 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
4182 unsigned Align, bool isVol, bool AlwaysInline,
4206 isVol, AlwaysInline,
4213 if (AlwaysInline) {
4214 assert(ConstantSize && "AlwaysInline requires a constant size!");
3883 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
4000 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
4180 getMemcpy(SDValue Chain, SDLoc dl, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) argument

Completed in 1913 milliseconds