HomeSort by relevance Sort by last modified time
    Searched refs:InstrProfReader (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 1 //=-- InstrProfReader.h - Instrumented profiling readers ----------*- C++ -*-=//
30 class InstrProfReader;
45 InstrProfReader *Reader;
51 InstrProfIterator(InstrProfReader *Reader) : Reader(Reader) { Increment(); }
62 class InstrProfReader {
66 InstrProfReader() : LastError(instrprof_error::success) {}
67 virtual ~InstrProfReader() {}
98 std::unique_ptr<InstrProfReader> &Result);
109 class TextInstrProfReader : public InstrProfReader {
139 class RawInstrProfReader : public InstrProfReader {
    [all...]
  /external/llvm/lib/ProfileData/
Android.mk 5 InstrProfReader.cpp \
InstrProfReader.cpp 1 //=-- InstrProfReader.cpp - Instrumented profiling reader -------------------=//
15 #include "llvm/ProfileData/InstrProfReader.h"
38 static std::error_code initializeReader(InstrProfReader &Reader) {
43 InstrProfReader::create(std::string Path,
44 std::unique_ptr<InstrProfReader> &Result) {
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 15 #include "llvm/ProfileData/InstrProfReader.h"
58 std::unique_ptr<InstrProfReader> Reader;
59 if (std::error_code ec = InstrProfReader::create(Filename, Reader))
93 std::unique_ptr<InstrProfReader> Reader;
94 if (std::error_code EC = InstrProfReader::create(Filename, Reader))

Completed in 959 milliseconds