Store num args instead of offset in prologue and func entry SrcKeys
[hiphop-php.git] / hphp / runtime / vm / jit / translator-inline.h
blob5ef6754aa0f88238f5d0ceb23a2e976ec7778d1b
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-present Facebook, Inc. (http://www.facebook.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
17 #pragma once
19 #include "hphp/runtime/base/execution-context.h"
20 #include "hphp/runtime/vm/func.h"
21 #include "hphp/runtime/vm/resumable.h"
22 #include "hphp/runtime/vm/vm-regs.h"
23 #include "hphp/runtime/vm/jit/stack-offsets.h"
24 #include "hphp/runtime/vm/jit/translator.h"
27 * Because of a circular dependence with ExecutionContext, these
28 * translation-related helpers cannot live in translator.h.
30 namespace HPHP {
32 ///////////////////////////////////////////////////////////////////////////////
34 inline ActRec* liveFrame() { return vmfp(); }
35 inline const Func* liveFunc() { return liveFrame()->func(); }
36 inline const Unit* liveUnit() { return liveFunc()->unit(); }
37 inline Class* liveClass() { return liveFunc()->cls(); }
38 inline ResumeMode liveResumeMode() { return resumeModeFromActRec(liveFrame()); }
39 inline bool liveHasThis() { return liveClass() && liveFrame()->hasThis(); }
40 inline SrcKey liveSK() {
41 return { liveFunc(), vmpc(), liveResumeMode() };
43 inline jit::SBInvOffset liveSpOff() {
44 auto const stackBase = Stack::anyFrameStackBase(liveFrame());
45 return jit::SBInvOffset{safe_cast<int32_t>(stackBase - vmsp())};
48 ///////////////////////////////////////////////////////////////////////////////
50 namespace jit {
52 ///////////////////////////////////////////////////////////////////////////////
54 inline int cellsToBytes(int nCells) {
55 return safe_cast<int32_t>(nCells * ssize_t(sizeof(TypedValue)));
58 inline int localOffset(int locId) {
59 return -cellsToBytes(locId + 1);
62 ///////////////////////////////////////////////////////////////////////////////