mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 23:48:56 +00:00
Move member functions closer to others of the same class (NFC)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254055 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
834f85c5e6
commit
059b6b4a21
@ -143,6 +143,22 @@ uint64_t stringToHash(uint32_t ValueKind, uint64_t Value) {
|
||||
return Value;
|
||||
}
|
||||
|
||||
uint32_t ValueProfRecord::getNumValueData() const {
|
||||
uint32_t NumValueData = 0;
|
||||
for (uint32_t I = 0; I < NumValueSites; I++)
|
||||
NumValueData += SiteCountArray[I];
|
||||
return NumValueData;
|
||||
}
|
||||
|
||||
ValueProfRecord *ValueProfRecord::getNext() {
|
||||
return reinterpret_cast<ValueProfRecord *>((char *)this + getSize());
|
||||
}
|
||||
|
||||
InstrProfValueData *ValueProfRecord::getValueData() {
|
||||
return reinterpret_cast<InstrProfValueData *>(
|
||||
(char *)this + getValueProfRecordHeaderSize(NumValueSites));
|
||||
}
|
||||
|
||||
void ValueProfRecord::deserializeTo(InstrProfRecord &Record,
|
||||
InstrProfRecord::ValueMapType *VMap) {
|
||||
Record.reserveSites(Kind, NumValueSites);
|
||||
@ -331,19 +347,5 @@ ValueProfRecord *ValueProfData::getFirstValueProfRecord() {
|
||||
sizeof(ValueProfData));
|
||||
}
|
||||
|
||||
uint32_t ValueProfRecord::getNumValueData() const {
|
||||
uint32_t NumValueData = 0;
|
||||
for (uint32_t I = 0; I < NumValueSites; I++)
|
||||
NumValueData += SiteCountArray[I];
|
||||
return NumValueData;
|
||||
}
|
||||
|
||||
ValueProfRecord *ValueProfRecord::getNext() {
|
||||
return reinterpret_cast<ValueProfRecord *>((char *)this + getSize());
|
||||
}
|
||||
|
||||
InstrProfValueData *ValueProfRecord::getValueData() {
|
||||
return reinterpret_cast<InstrProfValueData *>(
|
||||
(char *)this + getValueProfRecordHeaderSize(NumValueSites));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user