HomeSort by relevance Sort by last modified time
    Searched defs:InstructionLocation (Results 1 - 2 of 2) sorted by null

  /art/runtime/
profiler.h 44 typedef std::pair<mirror::ArtMethod*, uint32_t> InstructionLocation;
108 void PutStack(const std::vector<InstructionLocation>& stack_dump);
180 void RecordStack(const std::vector<InstructionLocation>& stack) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
  /external/llvm/lib/Transforms/Scalar/
SampleProfile.cpp 77 struct InstructionLocation {
78 InstructionLocation(int L, unsigned D) : LineOffset(L), Discriminator(D) {}
85 template <> struct DenseMapInfo<InstructionLocation> {
88 static inline InstructionLocation getEmptyKey() {
89 return InstructionLocation(OffsetInfo::getEmptyKey(),
92 static inline InstructionLocation getTombstoneKey() {
93 return InstructionLocation(OffsetInfo::getTombstoneKey(),
96 static inline unsigned getHashValue(InstructionLocation Val) {
100 static inline bool isEqual(InstructionLocation LHS, InstructionLocation RHS)
    [all...]

Completed in 1029 milliseconds