1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
|
/*
* Copyright (C) 2012-2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "BaselineJITRegisters.h"
#include "CallFrameShuffleData.h"
#include "CallMode.h"
#include "CodeLocation.h"
#include "CodeOrigin.h"
#include "CodeSpecializationKind.h"
#include "PolymorphicCallStubRoutine.h"
#include "WriteBarrier.h"
#include <wtf/ScopedLambda.h>
#include <wtf/SentinelLinkedList.h>
namespace JSC {
namespace DFG {
struct UnlinkedCallLinkInfo;
}
class CCallHelpers;
class ExecutableBase;
class FunctionCodeBlock;
class JSFunction;
class OptimizingCallLinkInfo;
class PolymorphicCallStubRoutine;
enum OpcodeID : unsigned;
struct CallFrameShuffleData;
struct UnlinkedCallLinkInfo;
struct BaselineUnlinkedCallLinkInfo;
using CompileTimeCallLinkInfo = std::variant<OptimizingCallLinkInfo*, BaselineUnlinkedCallLinkInfo*, DFG::UnlinkedCallLinkInfo*>;
class CallLinkInfo : public PackedRawSentinelNode<CallLinkInfo> {
public:
friend class LLIntOffsetsExtractor;
static constexpr uint8_t maxProfiledArgumentCountIncludingThisForVarargs = UINT8_MAX;
enum class Type : uint8_t {
Baseline,
Optimizing,
};
enum CallType : uint8_t {
None,
Call,
CallVarargs,
Construct,
ConstructVarargs,
TailCall,
TailCallVarargs,
DirectCall,
DirectConstruct,
DirectTailCall
};
static constexpr uintptr_t polymorphicCalleeMask = 1;
static CallType callTypeFor(OpcodeID opcodeID);
static bool isVarargsCallType(CallType callType)
{
switch (callType) {
case CallVarargs:
case ConstructVarargs:
case TailCallVarargs:
return true;
default:
return false;
}
}
~CallLinkInfo();
static CodeSpecializationKind specializationKindFor(CallType callType)
{
return specializationFromIsConstruct(callType == Construct || callType == ConstructVarargs || callType == DirectConstruct);
}
CodeSpecializationKind specializationKind() const
{
return specializationKindFor(static_cast<CallType>(m_callType));
}
static CallMode callModeFor(CallType callType)
{
switch (callType) {
case Call:
case CallVarargs:
case DirectCall:
return CallMode::Regular;
case TailCall:
case TailCallVarargs:
case DirectTailCall:
return CallMode::Tail;
case Construct:
case ConstructVarargs:
case DirectConstruct:
return CallMode::Construct;
case None:
RELEASE_ASSERT_NOT_REACHED();
}
RELEASE_ASSERT_NOT_REACHED();
}
static bool isDirect(CallType callType)
{
switch (callType) {
case DirectCall:
case DirectTailCall:
case DirectConstruct:
return true;
case Call:
case CallVarargs:
case TailCall:
case TailCallVarargs:
case Construct:
case ConstructVarargs:
return false;
case None:
RELEASE_ASSERT_NOT_REACHED();
return false;
}
RELEASE_ASSERT_NOT_REACHED();
return false;
}
CallMode callMode() const
{
return callModeFor(static_cast<CallType>(m_callType));
}
bool isDirect() const
{
return isDirect(static_cast<CallType>(m_callType));
}
bool isTailCall() const
{
return callMode() == CallMode::Tail;
}
NearCallMode nearCallMode() const
{
return isTailCall() ? NearCallMode::Tail : NearCallMode::Regular;
}
bool isVarargs() const
{
return isVarargsCallType(static_cast<CallType>(m_callType));
}
bool isLinked() const { return stub() || m_calleeOrCodeBlock; }
void unlink(VM&);
enum class UseDataIC : bool { No, Yes };
#if ENABLE(JIT)
protected:
static MacroAssembler::JumpList emitFastPathImpl(CallLinkInfo*, CCallHelpers&, GPRReg calleeGPR, GPRReg callLinkInfoGPR, UseDataIC, bool isTailCall, ScopedLambda<void()>&& prepareForTailCall) WARN_UNUSED_RETURN;
static MacroAssembler::JumpList emitDataICFastPath(CCallHelpers&, GPRReg calleeGPR, GPRReg callLinkInfoGPR) WARN_UNUSED_RETURN;
static void emitDataICSlowPath(VM&, CCallHelpers&, GPRReg callLinkInfoGPR);
static MacroAssembler::JumpList emitTailCallDataICFastPath(CCallHelpers&, GPRReg calleeGPR, GPRReg callLinkInfoGPR, ScopedLambda<void()>&& prepareForTailCall) WARN_UNUSED_RETURN;
public:
static MacroAssembler::JumpList emitFastPath(CCallHelpers&, CompileTimeCallLinkInfo, GPRReg calleeGPR, GPRReg callLinkInfoGPR) WARN_UNUSED_RETURN;
static MacroAssembler::JumpList emitTailCallFastPath(CCallHelpers&, CompileTimeCallLinkInfo, GPRReg calleeGPR, GPRReg callLinkInfoGPR, ScopedLambda<void()>&& prepareForTailCall) WARN_UNUSED_RETURN;
static void emitSlowPath(VM&, CCallHelpers&, CompileTimeCallLinkInfo, GPRReg callLinkInfoGPR);
#endif
void revertCallToStub();
bool isDataIC() const { return useDataIC() == UseDataIC::Yes; }
UseDataIC useDataIC() const { return static_cast<UseDataIC>(m_useDataIC); }
bool allowStubs() const { return m_allowStubs; }
void disallowStubs()
{
m_allowStubs = false;
}
CodeLocationLabel<JSInternalPtrTag> doneLocation();
void setMonomorphicCallee(VM&, JSCell*, JSObject* callee, CodeBlock*, CodePtr<JSEntryPtrTag>);
void setSlowPathCallDestination(CodePtr<JSEntryPtrTag>);
void clearCallee();
JSObject* callee();
void setCodeBlock(VM&, JSCell*, FunctionCodeBlock*);
void clearCodeBlock();
FunctionCodeBlock* codeBlock();
void setLastSeenCallee(VM&, const JSCell* owner, JSObject* callee);
void clearLastSeenCallee();
JSObject* lastSeenCallee() const;
bool haveLastSeenCallee() const;
void setExecutableDuringCompilation(ExecutableBase*);
ExecutableBase* executable();
#if ENABLE(JIT)
void setStub(Ref<PolymorphicCallStubRoutine>&&);
#endif
void clearStub();
PolymorphicCallStubRoutine* stub() const
{
#if ENABLE(JIT)
return m_stub.get();
#else
return nullptr;
#endif
}
bool seenOnce()
{
return m_hasSeenShouldRepatch;
}
void clearSeen()
{
m_hasSeenShouldRepatch = false;
}
void setSeen()
{
m_hasSeenShouldRepatch = true;
}
bool hasSeenClosure()
{
return m_hasSeenClosure;
}
void setHasSeenClosure()
{
m_hasSeenClosure = true;
}
bool clearedByGC()
{
return m_clearedByGC;
}
bool clearedByVirtual()
{
return m_clearedByVirtual;
}
void setClearedByVirtual()
{
m_clearedByVirtual = true;
}
void setCallType(CallType callType)
{
m_callType = callType;
}
CallType callType()
{
return static_cast<CallType>(m_callType);
}
static ptrdiff_t offsetOfMaxArgumentCountIncludingThisForVarargs()
{
return OBJECT_OFFSETOF(CallLinkInfo, m_maxArgumentCountIncludingThisForVarargs);
}
uint32_t maxArgumentCountIncludingThisForVarargs()
{
return m_maxArgumentCountIncludingThisForVarargs;
}
void updateMaxArgumentCountIncludingThisForVarargs(unsigned argumentCountIncludingThisForVarargs)
{
if (m_maxArgumentCountIncludingThisForVarargs < argumentCountIncludingThisForVarargs)
m_maxArgumentCountIncludingThisForVarargs = std::min<unsigned>(argumentCountIncludingThisForVarargs, maxProfiledArgumentCountIncludingThisForVarargs);
}
static ptrdiff_t offsetOfSlowPathCount()
{
return OBJECT_OFFSETOF(CallLinkInfo, m_slowPathCount);
}
static ptrdiff_t offsetOfCallee()
{
return OBJECT_OFFSETOF(CallLinkInfo, m_calleeOrCodeBlock);
}
static ptrdiff_t offsetOfCodeBlock()
{
return OBJECT_OFFSETOF(CallLinkInfo, u) + OBJECT_OFFSETOF(UnionType, dataIC.m_codeBlock);
}
static ptrdiff_t offsetOfMonomorphicCallDestination()
{
return OBJECT_OFFSETOF(CallLinkInfo, u) + OBJECT_OFFSETOF(UnionType, dataIC.m_monomorphicCallDestination);
}
static ptrdiff_t offsetOfSlowPathCallDestination()
{
return OBJECT_OFFSETOF(CallLinkInfo, m_slowPathCallDestination);
}
#if ENABLE(JIT)
GPRReg calleeGPR() const;
GPRReg callLinkInfoGPR() const;
#endif
uint32_t slowPathCount()
{
return m_slowPathCount;
}
CodeOrigin codeOrigin() const;
template<typename Functor>
void forEachDependentCell(const Functor& functor) const
{
if (isLinked()) {
if (stub()) {
#if ENABLE(JIT)
stub()->forEachDependentCell(functor);
#else
RELEASE_ASSERT_NOT_REACHED();
#endif
} else {
functor(m_calleeOrCodeBlock.get());
if (isDirect())
functor(m_lastSeenCalleeOrExecutable.get());
}
}
if (!isDirect() && haveLastSeenCallee())
functor(lastSeenCallee());
}
void visitWeak(VM&);
Type type() const { return static_cast<Type>(m_type); }
protected:
CallLinkInfo(Type type, UseDataIC useDataIC)
: m_hasSeenShouldRepatch(false)
, m_hasSeenClosure(false)
, m_clearedByGC(false)
, m_clearedByVirtual(false)
, m_allowStubs(true)
, m_callType(None)
, m_useDataIC(static_cast<unsigned>(useDataIC))
, m_type(static_cast<unsigned>(type))
{
ASSERT(type == this->type());
ASSERT(useDataIC == this->useDataIC());
}
uint32_t m_slowPathCount { 0 };
CodeLocationLabel<JSInternalPtrTag> m_doneLocation;
CodePtr<JSEntryPtrTag> m_slowPathCallDestination;
union UnionType {
UnionType()
: dataIC { nullptr, nullptr }
{ }
struct DataIC {
CodeBlock* m_codeBlock; // This is weekly held. And cleared whenever m_monomorphicCallDestination is changed.
CodePtr<JSEntryPtrTag> m_monomorphicCallDestination;
} dataIC;
struct {
CodeLocationDataLabelPtr<JSInternalPtrTag> m_codeBlockLocation;
CodeLocationDataLabelPtr<JSInternalPtrTag> m_calleeLocation;
} codeIC;
} u;
WriteBarrier<JSCell> m_calleeOrCodeBlock;
WriteBarrier<JSCell> m_lastSeenCalleeOrExecutable;
#if ENABLE(JIT)
RefPtr<PolymorphicCallStubRoutine> m_stub;
#endif
bool m_hasSeenShouldRepatch : 1;
bool m_hasSeenClosure : 1;
bool m_clearedByGC : 1;
bool m_clearedByVirtual : 1;
bool m_allowStubs : 1;
unsigned m_callType : 4; // CallType
unsigned m_useDataIC : 1; // UseDataIC
unsigned m_type : 1; // Type
uint8_t m_maxArgumentCountIncludingThisForVarargs { 0 }; // For varargs: the profiled maximum number of arguments. For direct: the number of stack slots allocated for arguments.
};
class BaselineCallLinkInfo final : public CallLinkInfo {
public:
BaselineCallLinkInfo()
: CallLinkInfo(Type::Baseline, UseDataIC::Yes)
{
}
void initialize(VM&, CallType, BytecodeIndex);
void setCodeLocations(CodeLocationLabel<JSInternalPtrTag> doneLocation)
{
m_doneLocation = doneLocation;
}
CodeOrigin codeOrigin() const { return CodeOrigin { m_bytecodeIndex }; }
#if ENABLE(JIT)
static constexpr GPRReg calleeGPR() { return BaselineJITRegisters::Call::calleeGPR; }
static constexpr GPRReg callLinkInfoGPR() { return BaselineJITRegisters::Call::callLinkInfoGPR; }
#endif
private:
BytecodeIndex m_bytecodeIndex { };
};
inline CodeOrigin getCallLinkInfoCodeOrigin(CallLinkInfo& callLinkInfo)
{
return callLinkInfo.codeOrigin();
}
struct UnlinkedCallLinkInfo {
CodeLocationLabel<JSInternalPtrTag> doneLocation;
void setCodeLocations(CodeLocationLabel<JSInternalPtrTag>, CodeLocationLabel<JSInternalPtrTag> doneLocation)
{
this->doneLocation = doneLocation;
}
};
struct BaselineUnlinkedCallLinkInfo : public UnlinkedCallLinkInfo {
BytecodeIndex bytecodeIndex; // Currently, only used by baseline, so this can trivially produce a CodeOrigin.
#if ENABLE(JIT)
void setUpCall(CallLinkInfo::CallType, GPRReg) { }
#endif
void setFrameShuffleData(const CallFrameShuffleData&) { }
};
#if ENABLE(JIT)
class OptimizingCallLinkInfo final : public CallLinkInfo {
public:
friend class CallLinkInfo;
OptimizingCallLinkInfo()
: CallLinkInfo(Type::Optimizing, UseDataIC::Yes)
{
}
OptimizingCallLinkInfo(CodeOrigin codeOrigin, UseDataIC useDataIC)
: CallLinkInfo(Type::Optimizing, useDataIC)
, m_codeOrigin(codeOrigin)
{
}
void setUpCall(CallType callType, GPRReg calleeGPR)
{
m_callType = callType;
m_calleeGPR = calleeGPR;
}
void setCodeLocations(
CodeLocationLabel<JSInternalPtrTag> slowPathStart,
CodeLocationLabel<JSInternalPtrTag> doneLocation)
{
if (!isDataIC())
m_slowPathStart = slowPathStart;
m_doneLocation = doneLocation;
}
CodeLocationLabel<JSInternalPtrTag> fastPathStart();
CodeLocationLabel<JSInternalPtrTag> slowPathStart();
GPRReg calleeGPR() const { return m_calleeGPR; }
GPRReg callLinkInfoGPR() const { return m_callLinkInfoGPR; }
void setCallLinkInfoGPR(GPRReg callLinkInfoGPR) { m_callLinkInfoGPR = callLinkInfoGPR; }
void emitDirectFastPath(CCallHelpers&);
void emitDirectTailCallFastPath(CCallHelpers&, ScopedLambda<void()>&& prepareForTailCall);
void initializeDirectCall();
void setDirectCallTarget(CodeBlock*, CodeLocationLabel<JSEntryPtrTag>);
void setDirectCallMaxArgumentCountIncludingThis(unsigned);
unsigned maxArgumentCountIncludingThisForDirectCall() const { return m_maxArgumentCountIncludingThisForDirectCall; }
void emitSlowPath(VM&, CCallHelpers&);
void setFrameShuffleData(const CallFrameShuffleData&);
const CallFrameShuffleData* frameShuffleData()
{
return m_frameShuffleData.get();
}
CodeOrigin codeOrigin() const { return m_codeOrigin; }
void initializeFromDFGUnlinkedCallLinkInfo(VM&, const DFG::UnlinkedCallLinkInfo&);
private:
MacroAssembler::JumpList emitFastPath(CCallHelpers&, GPRReg calleeGPR, GPRReg callLinkInfoGPR) WARN_UNUSED_RETURN;
MacroAssembler::JumpList emitTailCallFastPath(CCallHelpers&, GPRReg calleeGPR, GPRReg callLinkInfoGPR, ScopedLambda<void()>&& prepareForTailCall) WARN_UNUSED_RETURN;
CodeOrigin m_codeOrigin;
CodeLocationNearCall<JSInternalPtrTag> m_callLocation NO_UNIQUE_ADDRESS;
GPRReg m_calleeGPR { InvalidGPRReg };
GPRReg m_callLinkInfoGPR { InvalidGPRReg };
unsigned m_maxArgumentCountIncludingThisForDirectCall { 0 };
CodeLocationLabel<JSInternalPtrTag> m_slowPathStart;
CodeLocationLabel<JSInternalPtrTag> m_fastPathStart;
std::unique_ptr<CallFrameShuffleData> m_frameShuffleData;
};
inline GPRReg CallLinkInfo::calleeGPR() const
{
switch (type()) {
case Type::Baseline:
return static_cast<const BaselineCallLinkInfo*>(this)->calleeGPR();
case Type::Optimizing:
return static_cast<const OptimizingCallLinkInfo*>(this)->calleeGPR();
}
return InvalidGPRReg;
}
inline GPRReg CallLinkInfo::callLinkInfoGPR() const
{
switch (type()) {
case Type::Baseline:
return static_cast<const BaselineCallLinkInfo*>(this)->callLinkInfoGPR();
case Type::Optimizing:
return static_cast<const OptimizingCallLinkInfo*>(this)->callLinkInfoGPR();
}
return InvalidGPRReg;
}
#endif
inline CodeOrigin CallLinkInfo::codeOrigin() const
{
switch (type()) {
case Type::Baseline:
return static_cast<const BaselineCallLinkInfo*>(this)->codeOrigin();
case Type::Optimizing:
#if ENABLE(JIT)
return static_cast<const OptimizingCallLinkInfo*>(this)->codeOrigin();
#else
return { };
#endif
}
return { };
}
} // namespace JSC
|