Home
last modified time | relevance | path

Searched refs:Cold (Results 1 – 23 of 23) sorted by relevance

/external/llvm/include/llvm/IR/
DCallingConv.h48 Cold = 9, enumerator
DAttributes.h75 Cold, ///< Marks function as being in a cold path. enumerator
/external/llvm/unittests/Transforms/Utils/
DCloning.cpp187 F1->setCallingConv(CallingConv::Cold); in TEST_F()
199 EXPECT_EQ(CallingConv::Cold, F2->getCallingConv()); in TEST_F()
/external/llvm/test/Transforms/Inline/
Dinline-cold.ll2 ; Test that functions with attribute Cold are not inlined while the
3 ; same function without attribute Cold will be inlined.
/external/llvm/lib/Target/X86/
DX86RegisterInfo.cpp257 case CallingConv::Cold: in getCalleeSavedRegs()
317 case CallingConv::Cold: in getCallPreservedMask()
/external/llvm/lib/Transforms/IPO/
DInliner.cpp278 Callee->hasFnAttribute(Attribute::Cold); in getInlineThreshold()
/external/llvm/lib/IR/
DAttributes.cpp263 if (hasAttribute(Attribute::Cold)) in getAsString()
431 case Attribute::Cold: return 1ULL << 40; in getAttrMask()
DVerifier.cpp1267 I->getKindAsEnum() == Attribute::Cold || in VerifyAttributeTypes()
1645 case CallingConv::Cold: in visitFunction()
DAsmWriter.cpp296 case CallingConv::Cold: Out << "coldcc"; break; in PrintCallingConv()
/external/llvm/lib/Analysis/
DBranchProbabilityInfo.cpp246 if (CI->hasFnAttr(Attribute::Cold)) { in calcColdCallHeuristics()
/external/llvm/test/CodeGen/PowerPC/
Dppc64-stackmap.ll141 ; Cold OSR Exit
/external/llvm/test/CodeGen/AArch64/
Darm64-stackmap.ll107 ; Cold OSR Exit
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp785 Fn->addFnAttr(llvm::Attribute::Cold); in applyFunctionAttributes()
DCodeGenModule.cpp735 B.addAttribute(llvm::Attribute::Cold); in SetLLVMFunctionAttributesForDefinition()
/external/llvm/test/CodeGen/X86/
Dstackmap.ll154 ; Cold OSR Exit
/external/llvm/lib/Analysis/IPA/
DInlineCost.cpp1090 if (F.getCallingConv() == CallingConv::Cold) in analyzeCall()
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1523 if (!CI->hasFnAttr(Attribute::Cold) && in optimizeErrorReporting()
1525 CI->addAttribute(AttributeSet::FunctionIndex, Attribute::Cold); in optimizeErrorReporting()
/external/clang/include/clang/Basic/
DAttr.td523 def Cold : InheritableAttr {
774 // semantic checking for mutual exclusion with the Cold attribute.
/external/llvm/lib/Transforms/Scalar/
DRewriteStatepointsForGC.cpp1097 cast<CallInst>(reloc)->setCallingConv(CallingConv::Cold); in CreateGCRelocates()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp277 case CallingConv::Cold: Out << "CallingConv::Cold"; break; in printCallingConv()
/external/llvm/lib/AsmParser/
DLLParser.cpp943 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break; in ParseFnAttributeValuePairs()
1462 case lltok::kw_coldcc: CC = CallingConv::Cold; break; in ParseOptionalCallingConv()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp171 case Attribute::Cold: in getAttrKindEncoding()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1070 return Attribute::Cold; in GetAttrFromCode()