Changeset 218412 in webkit for trunk/Source/JavaScriptCore/jit/JITPropertyAccess.cpp
- Timestamp:
- Jun 16, 2017, 2:02:37 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITPropertyAccess.cpp
r217202 r218412 1 1 /* 2 * Copyright (C) 2008 , 2009, 2014, 2015Apple Inc. All rights reserved.2 * Copyright (C) 2008-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 33 33 #include "GCAwareJITStubRoutine.h" 34 34 #include "GetterSetter.h" 35 #include "Interpreter .h"35 #include "InterpreterInlines.h" 36 36 #include "JITInlines.h" 37 37 #include "JSArray.h" … … 491 491 emitGetVirtualRegister(property, regT1); 492 492 emitGetVirtualRegister(value, regT2); 493 bool isDirect = m_interpreter->getOpcodeID(currentInstruction->u.opcode) == op_put_by_val_direct;493 bool isDirect = Interpreter::getOpcodeID(currentInstruction->u.opcode) == op_put_by_val_direct; 494 494 Call call = callOperation(isDirect ? operationDirectPutByValOptimize : operationPutByValOptimize, regT0, regT1, regT2, byValInfo); 495 495 … … 1435 1435 } 1436 1436 1437 bool isDirect = m_interpreter->getOpcodeID(currentInstruction->u.opcode) == op_put_by_val_direct;1437 bool isDirect = Interpreter::getOpcodeID(currentInstruction->u.opcode) == op_put_by_val_direct; 1438 1438 if (!isDirect) { 1439 1439 byValInfo->stubRoutine = FINALIZE_CODE_FOR_STUB(
Note:
See TracChangeset
for help on using the changeset viewer.