/external/llvm/unittests/IR/ |
D | AttributesTest.cpp | 20 Attribute AttrA = Attribute::get(C, Attribute::AlwaysInline); in TEST() 21 Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline); in TEST()
|
/external/llvm/lib/Target/XCore/ |
D | XCoreSelectionDAGInfo.cpp | 22 bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument 28 if (!AlwaysInline && (Align & 3) == 0 && in EmitTargetCodeForMemcpy()
|
D | XCoreSelectionDAGInfo.h | 31 bool AlwaysInline,
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonSelectionDAGInfo.cpp | 24 bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument 28 if (AlwaysInline || (Align & 0x3) != 0 || !ConstantSize) in EmitTargetCodeForMemcpy()
|
D | HexagonSelectionDAGInfo.h | 28 bool isVolatile, bool AlwaysInline,
|
/external/llvm/lib/Target/X86/ |
D | X86SelectionDAGInfo.cpp | 199 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument 209 if (!AlwaysInline && SizeVal > Subtarget.getMaxInlineSizeThreshold()) in EmitTargetCodeForMemcpy() 216 if (!AlwaysInline && (Align & 3) != 0) in EmitTargetCodeForMemcpy() 278 Align, isVolatile, AlwaysInline, false, in EmitTargetCodeForMemcpy()
|
D | X86SelectionDAGInfo.h | 45 bool isVolatile, bool AlwaysInline,
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUAlwaysInlinePass.cpp | 56 F.addFnAttr(Attribute::AlwaysInline); in runOnModule()
|
/external/llvm/lib/Transforms/IPO/ |
D | InlineAlways.cpp | 102 CS.hasFnAttr(Attribute::AlwaysInline) && in getInlineCost()
|
D | Inliner.cpp | 700 if (AlwaysInlineOnly && !F->hasFnAttribute(Attribute::AlwaysInline)) in removeDeadFunctions()
|
D | FunctionAttrs.cpp | 1856 .Case("alwaysinline", Attribute::AlwaysInline) in parseAttrKind()
|
/external/llvm/lib/Target/ARM/ |
D | ARMSelectionDAGInfo.h | 45 bool isVolatile, bool AlwaysInline,
|
D | ARMSelectionDAGInfo.cpp | 136 bool isVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument 152 if (!AlwaysInline && SizeVal > Subtarget.getMaxInlineSizeThreshold()) in EmitTargetCodeForMemcpy()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.h | 30 bool IsVolatile, bool AlwaysInline,
|
D | SystemZSelectionDAGInfo.cpp | 52 bool IsVolatile, bool AlwaysInline, in EmitTargetCodeForMemcpy() argument
|
/external/llvm/include/llvm/Target/ |
D | TargetSelectionDAGInfo.h | 53 bool AlwaysInline, in EmitTargetCodeForMemcpy() argument
|
/external/llvm/include/llvm/IR/ |
D | Attributes.td | 20 def AlwaysInline : EnumAttr<"alwaysinline">;
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
D | CompileOnDemandLayer.h | 419 ClonedF->addFnAttr(Attribute::AlwaysInline); in emitPartition()
|
/external/llvm/lib/IR/ |
D | Attributes.cpp | 191 if (hasAttribute(Attribute::AlwaysInline)) in getAsString() 421 case Attribute::AlwaysInline: return 1 << 12; in getAttrMask()
|
D | Verifier.cpp | 1230 I->getKindAsEnum() == Attribute::AlwaysInline || in VerifyAttributeTypes() 1336 Attrs.hasAttribute(Idx, Attribute::AlwaysInline)), in VerifyParameterAttrs() 1443 Attribute::AlwaysInline)), in VerifyFunctionAttrs()
|
/external/llvm/lib/Analysis/ |
D | InlineCost.cpp | 1378 if (CS.hasFnAttr(Attribute::AlwaysInline)) { in getInlineCost()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 4271 bool AlwaysInline, in getMemcpyLoadsAndStores() argument 4297 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize); in getMemcpyLoadsAndStores() 4386 bool AlwaysInline, in getMemmoveLoadsAndStores() argument 4407 unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize); in getMemmoveLoadsAndStores() 4572 unsigned Align, bool isVol, bool AlwaysInline, in getMemcpy() argument 4596 *this, dl, Chain, Dst, Src, Size, Align, isVol, AlwaysInline, in getMemcpy() 4604 if (AlwaysInline) { in getMemcpy()
|
/external/llvm/include/llvm/CodeGen/ |
D | SelectionDAG.h | 711 SDValue Size, unsigned Align, bool isVol, bool AlwaysInline,
|
/external/clang/lib/CodeGen/ |
D | CodeGenModule.cpp | 835 B.addAttribute(llvm::Attribute::AlwaysInline); in SetLLVMFunctionAttributesForDefinition() 859 assert(!F->hasFnAttribute(llvm::Attribute::AlwaysInline) && in SetLLVMFunctionAttributesForDefinition()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 510 HANDLE_ATTR(AlwaysInline); in printAttributes()
|