Changeset 221148 in webkit for trunk/Source/JavaScriptCore/jit/AssemblyHelpers.h
- Timestamp:
- Aug 24, 2017, 11:00:09 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/AssemblyHelpers.h
r220416 r221148 1318 1318 return; 1319 1319 1320 andPtr(TrustedImmPtr( static_cast<size_t>(GIGACAGE_MASK)), storage);1320 andPtr(TrustedImmPtr(Gigacage::mask(kind)), storage); 1321 1321 addPtr(TrustedImmPtr(Gigacage::basePtr(kind)), storage); 1322 1322 #else … … 1337 1337 loadPtr(&Gigacage::basePtr(kind), scratch); 1338 1338 Jump done = branchTestPtr(Zero, scratch); 1339 andPtr(TrustedImmPtr( static_cast<size_t>(GIGACAGE_MASK)), storage);1339 andPtr(TrustedImmPtr(Gigacage::mask(kind)), storage); 1340 1340 addPtr(scratch, storage); 1341 1341 done.link(this);
Note:
See TracChangeset
for help on using the changeset viewer.