Clean up irgen.h a bit
[hiphop-php.git] / hphp / runtime / vm / jit / code-gen-internal.cpp
blob795ca33f4f4f9d851511ecbadf6c470a6eeb7f52
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-2016 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 #include "hphp/runtime/vm/jit/code-gen-internal.h"
19 #include "hphp/runtime/base/string-data.h"
20 #include "hphp/runtime/vm/member-operations.h"
22 #include "hphp/runtime/vm/jit/type.h"
24 namespace HPHP { namespace jit {
26 ///////////////////////////////////////////////////////////////////////////////
28 ArrayKeyInfo checkStrictlyInteger(Type arr, Type key) {
29 auto ret = ArrayKeyInfo{};
30 assertx(arr <= TArr);
32 if (key <= TInt) {
33 ret.type = KeyType::Int;
34 return ret;
36 assertx(key <= TStr);
37 ret.type = KeyType::Str;
39 auto const dictType = Type::Array(ArrayData::kDictKind);
40 if (arr <= dictType) {
41 return ret;
44 if (key.hasConstVal()) {
45 int64_t i;
46 if (key.strVal()->isStrictlyInteger(i)) {
47 if (arr.maybe(dictType)) {
48 ret.checkForInt = true;
49 } else {
50 ret.converted = true;
51 ret.type = KeyType::Int;
52 ret.convertedInt = i;
55 } else {
56 ret.checkForInt = true;
59 return ret;
62 ///////////////////////////////////////////////////////////////////////////////