Home
last modified time | relevance | path

Searched refs:ProfileData (Results 1 – 21 of 21) sorted by relevance

/external/llvm/unittests/ProfileData/
DMakefile11 TESTNAME = ProfileData
12 LINK_COMPONENTS := ProfileData Core Support
DCMakeLists.txt3 ProfileData
/external/llvm/lib/ProfileData/
DLLVMBuild.txt1 ;===- ./lib/ProfileData/LLVMBuild.txt --------------------------*- Conf -*--===;
20 name = ProfileData
DCMakeLists.txt13 ${LLVM_MAIN_INCLUDE_DIR}/llvm/ProfileData
DInstrProfReader.cpp240 ptrdiff_t CountersOffset = DataOffset + sizeof(ProfileData) * DataSize; in readHeader()
248 Data = reinterpret_cast<const ProfileData *>(Start + DataOffset); in readHeader()
/external/llvm/tools/llvm-profdata/
DCMakeLists.txt3 ProfileData
DLLVMBuild.txt22 required_libraries = ProfileData Support
/external/llvm/include/llvm/ProfileData/
DInstrProfReader.h146 struct ProfileData { struct
166 const ProfileData *Data; argument
167 const ProfileData *DataEnd;
/external/llvm/lib/
DMakefile15 IRReader LineEditor ProfileData Passes
DCMakeLists.txt19 add_subdirectory(ProfileData)
DLLVMBuild.txt19 …cutionEngine LineEditor Linker IR IRReader LTO MC Object Option Passes ProfileData Support TableGe…
/external/llvm/unittests/
DMakefile13 LineEditor Linker MC Option ProfileData Support Transforms
DCMakeLists.txt25 add_subdirectory(ProfileData)
/external/llvm/tools/llvm-cov/
DLLVMBuild.txt22 required_libraries = ProfileData Support Instrumentation
/external/llvm/lib/Transforms/Scalar/
DLLVMBuild.txt23 required_libraries = Analysis Core InstCombine ProfileData Support TransformUtils
/external/clang/lib/CodeGen/
DCMakeLists.txt13 ProfileData
/external/llvm/
DCODE_OWNERS.TXT25 D: InstrProfiling and related parts of ProfileData
119 D: SampleProfile and related parts of ProfileData
DAndroid.mk34 lib/ProfileData \
/external/llvm/lib/IR/
DInstructions.cpp818 MDNode *ProfileData = getMetadata(LLVMContext::MD_prof); in swapSuccessors() local
819 if (!ProfileData || ProfileData->getNumOperands() != 3) in swapSuccessors()
823 Metadata *Ops[] = {ProfileData->getOperand(0), ProfileData->getOperand(2), in swapSuccessors()
824 ProfileData->getOperand(1)}; in swapSuccessors()
826 MDNode::get(ProfileData->getContext(), Ops)); in swapSuccessors()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp4524 auto *ProfileData = BI->getMetadata(LLVMContext::MD_prof); in extractBranchMetadata() local
4525 if (!ProfileData || ProfileData->getNumOperands() != 3) in extractBranchMetadata()
4529 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(1)); in extractBranchMetadata()
4531 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(2)); in extractBranchMetadata()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp2019 MDNode *ProfileData = BI->getMetadata(LLVMContext::MD_prof); in ExtractBranchMetadata() local
2020 if (!ProfileData || ProfileData->getNumOperands() != 3) return false; in ExtractBranchMetadata()
2022 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(1)); in ExtractBranchMetadata()
2024 mdconst::dyn_extract<ConstantInt>(ProfileData->getOperand(2)); in ExtractBranchMetadata()