Created
February 28, 2013 01:57
-
-
Save syg/5053567 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ParGetPropertyIC : public GetPropertyIC | |
{ | |
public: | |
ParGetPropertyIC(RegisterSet liveRegs, | |
Register object, PropertyName *name, | |
TypedOrValueRegister output, | |
bool allowGetters) | |
: GetPropertyIC(liveRegs, object, name, output, allowGetters) | |
{ | |
} | |
CACHE_HEADER(ParGetProperty) | |
static bool update(ForkJoinSlice *slice, size_t cacheIndex, HandleObject obj, | |
MutableHandleValue vp); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment