Home
last modified time | relevance | path

Searched refs:CurrentRecord (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/XRay/
H A DFDRTraceExpander.cpp16 C(CurrentRecord); in resetCurrentRecord()
19 CurrentRecord.Data.clear(); in resetCurrentRecord()
45 CurrentRecord.PId = PID; in visit()
46 CurrentRecord.TId = TID; in visit()
59 CurrentRecord.CPU = CPUId; in visit()
60 CurrentRecord.PId = PID; in visit()
61 CurrentRecord.TId = TID; in visit()
75 CurrentRecord.PId = PID; in visit()
76 CurrentRecord.TId = TID; in visit()
118 CurrentRecord.PId = PID; in visit()
[all …]
H A DBlockVerifier.cpp111 if (CurrentRecord >= State::StateMax) in transition()
116 recordToString(CurrentRecord).data(), recordToString(To).data()); in transition()
120 if (CurrentRecord == State::EndOfBuffer && To != State::NewBuffer) in transition()
123 auto &Mapping = TransitionTable[number(CurrentRecord)]; in transition()
125 assert(Mapping.From == CurrentRecord && in transition()
131 recordToString(CurrentRecord).data(), recordToString(To).data()); in transition()
133 CurrentRecord = To; in transition()
185 switch (CurrentRecord) { in verify()
198 recordToString(CurrentRecord).data()); in verify()
202 void BlockVerifier::reset() { CurrentRecord = State::Unknown; } in reset()
/freebsd-12.1/contrib/llvm/include/llvm/XRay/
H A DFDRTraceExpander.h30 XRayRecord CurrentRecord{0, 0, RecordTypes::ENTER, 0, 0, 0, 0, {}, {}};
H A DBlockVerifier.h45 State CurrentRecord = State::Unknown;
/freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp60 static Record *CurrentRecord = nullptr; variable
63 if (CurrentRecord) in assert_with_loc()
64 PrintFatalError(CurrentRecord->getLoc(), Str); in assert_with_loc()
1922 CurrentRecord = R; in generateImpl()
1954 CurrentRecord = nullptr; in generateImpl()
1958 CurrentRecord = R; in indexBody()
1964 CurrentRecord = nullptr; in indexBody()
2034 CurrentRecord = R; in createIntrinsic()
2071 CurrentRecord = nullptr; in createIntrinsic()
/freebsd-12.1/contrib/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp728 if (CurrentRecord >= MappingRecords.size()) in readNextRecord()
734 auto &R = MappingRecords[CurrentRecord]; in readNextRecord()
748 ++CurrentRecord; in readNextRecord()
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h196 size_t CurrentRecord = 0; variable