mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-05 14:52:02 +00:00
precompute 20 tags
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e117b63973
commit
b68f7aea33
@ -86,11 +86,17 @@ const Use *Use::getImpliedUser() const {
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
Use *Use::initTags(Use * const Start, Use *Stop, ptrdiff_t Done) {
|
Use *Use::initTags(Use * const Start, Use *Stop, ptrdiff_t Done) {
|
||||||
while (Done < 6) {
|
while (Done < 20) {
|
||||||
if (Start == Stop--)
|
if (Start == Stop--)
|
||||||
return Start;
|
return Start;
|
||||||
static const PrevPtrTag tags[6] = { fullStopTag, oneDigitTag, stopTag,
|
static const PrevPtrTag tags[20] = { fullStopTag, oneDigitTag, stopTag,
|
||||||
oneDigitTag, oneDigitTag, stopTag };
|
oneDigitTag, oneDigitTag, stopTag,
|
||||||
|
zeroDigitTag, oneDigitTag, oneDigitTag,
|
||||||
|
stopTag, zeroDigitTag, oneDigitTag,
|
||||||
|
zeroDigitTag, oneDigitTag, stopTag,
|
||||||
|
oneDigitTag, oneDigitTag, oneDigitTag,
|
||||||
|
oneDigitTag, stopTag
|
||||||
|
};
|
||||||
Stop->Prev.setFromOpaqueValue(reinterpret_cast<Use**>(tags[Done++]));
|
Stop->Prev.setFromOpaqueValue(reinterpret_cast<Use**>(tags[Done++]));
|
||||||
Stop->Val = 0;
|
Stop->Val = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user