LLVM 22.0.0git
|
#include "llvm/XRay/Profile.h"
#include "llvm/Support/DataExtractor.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/XRay/Trace.h"
#include <memory>
Go to the source code of this file.
Namespaces | |
namespace | llvm |
This is an optimization pass for GlobalISel generic memory operations. | |
namespace | llvm::xray |
Functions | |
LLVM_ABI Profile | llvm::xray::mergeProfilesByThread (const Profile &L, const Profile &R) |
This algorithm will merge two Profile instances into a single Profile instance, aggregating blocks by Thread ID. | |
LLVM_ABI Profile | llvm::xray::mergeProfilesByStack (const Profile &L, const Profile &R) |
This algorithm will merge two Profile instances into a single Profile instance, aggregating blocks by function call stack. | |
LLVM_ABI Expected< Profile > | llvm::xray::loadProfile (StringRef Filename) |
This function will attempt to load an XRay Profiling Mode profile from the provided |Filename|. | |
LLVM_ABI Expected< Profile > | llvm::xray::profileFromTrace (const Trace &T) |
This function takes a Trace and creates a Profile instance from it. |