Searched defs:AlwaysInline (Results 1 - 6 of 6) 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, DebugLoc 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, DebugLoc 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, DebugLoc 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)
255 Align, isVolatile, AlwaysInline,
178 EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/external/llvm/lib/Analysis/
H A DInlineCost.cpp52 const bool AlwaysInline; member in class:__anon8599::CallAnalyzer
128 AlwaysInline(F.hasFnAttr(Attribute::AlwaysInline)),
274 if (AlwaysInline || I.isStaticAlloca())
727 if (!AlwaysInline && Cost > (Threshold + VectorBonus))
791 if (!AlwaysInline) {
898 if (!AlwaysInline && Cost > (Threshold + VectorBonus))
974 return AlwaysInline || Cost < Threshold;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3503 bool AlwaysInline,
3512 // TODO: In the AlwaysInline case, if the size is big then generate a loop
3529 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
3598 bool AlwaysInline,
3619 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
3751 unsigned Align, bool isVol, bool AlwaysInline,
3774 isVol, AlwaysInline,
3781 if (AlwaysInline) {
3782 assert(ConstantSize && "AlwaysInline requires a constant size!");
3499 getMemcpyLoadsAndStores(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, unsigned Align, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) argument
3594 getMemmoveLoadsAndStores(SelectionDAG &DAG, DebugLoc dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, unsigned Align, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) argument
3749 getMemcpy(SDValue Chain, DebugLoc dl, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) argument

Completed in 887 milliseconds