Deshim VirtualExecutor in folly
[hiphop-php.git] / hphp / hhbbc / options-util.h
blobf6c7197400cf8babd4150bc2325be004a3c36da6
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 +----------------------------------------------------------------------+
16 #pragma once
18 #include "hphp/hhbbc/hhbbc.h"
19 #include "hphp/hhbbc/misc.h"
21 #include "hphp/util/trace.h"
23 namespace HPHP::HHBBC {
25 struct Context;
27 namespace php {
28 struct Class;
29 struct Func;
30 struct Unit;
33 //////////////////////////////////////////////////////////////////////
35 bool is_trace_function(const php::Class*,
36 const php::Func*,
37 const php::Unit* = nullptr);
38 bool is_trace_function(SString cls, SString func, SString unit);
39 bool is_trace_function(const Context&);
41 int trace_bump_for(const php::Class*,
42 const php::Func*,
43 const php::Unit* = nullptr);
44 int trace_bump_for(SString cls, SString func, SString unit);
45 int trace_bump_for(const Context&);
47 //////////////////////////////////////////////////////////////////////
49 template <typename... T>
50 std::array<Trace::Bump, sizeof...(T)> trace_bump(const Context& ctx,
51 T... mods) {
52 auto const b = trace_bump_for(ctx);
53 return { Trace::Bump{mods, b}... };
56 //////////////////////////////////////////////////////////////////////