Lines Matching defs:src
5 #include "src/objects/osr-optimized-code-cache.h"
7 #include "src/execution/isolate-inl.h"
8 #include "src/objects/code.h"
9 #include "src/objects/maybe-object.h"
10 #include "src/objects/shared-function-info.h"
268 void OSROptimizedCodeCache::MoveEntry(int src, int dst, Isolate* isolate) {
270 Get(src + OSRCodeCacheConstants::kSharedOffset));
272 Get(src + OSRCodeCacheConstants::kCachedCodeOffset));
273 Set(dst + OSRCodeCacheConstants::kOsrIdOffset, Get(src + kOsrIdOffset));
276 Set(src + OSRCodeCacheConstants::kSharedOffset, cleared_value);
277 Set(src + OSRCodeCacheConstants::kCachedCodeOffset, cleared_value);
278 Set(src + OSRCodeCacheConstants::kOsrIdOffset, cleared_value);