forked from facebook/hhvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
31782 lines (24460 loc) · 757 KB
/
CHANGES
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
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2014-05-21
mwilliams <[email protected]>:
* Fix crash due to hash collisions in POST data
2014-05-21
Dario Russi <[email protected]>:
* Fix memory leak with xml errors
2014-05-21
mwilliams <[email protected]>:
* Fix Xenon crash
2014-05-21
Dario Russi <[email protected]>:
* Revert "Fix for setting multiple cookies with the same name and added max-age support"
2014-05-21
Jordan DeLong <[email protected]>:
* Fix a bug in resolve_func_fallback when there is no function to resolve
* Revert "Revert "Fix a bug in Type::operator== for WaitH types""
* Fix an imprecise case in union_of that could lead to index invariant violations
* Tolerate multiple closure classes with the same name in hhbbc
2014-05-21
Jan Oravec <[email protected]>:
* Remove assertion that became incorrect after changes in c_Map
2014-05-21
Alex Malyshev <[email protected]>:
* Disable LowPtr when asan is enabled
2014-05-21
Dario Russi <[email protected]>:
* Backport fix for CVE-2011-2202
2014-05-13
Jordan DeLong <[email protected]>:
* Some clean up in the CallBuiltin instruction
* Modernize NativeImpl instruction
* Fix issues with closures and static dispatch to __invoke methods
* Fix an FTRACE that accidentally contained printf specifier
2014-05-13
Drew Paroski <[email protected]>:
* Clean up buffer sharing for Vector and other refactoring
2014-05-13
Josh Watzman <[email protected]>:
* Use a less ridiculous `minor_heap_size`
2014-05-13
Paul Tarjan <[email protected]>:
* renamed some ini settings
* move all testing configs to ini
* actually parse an ini file and pass it down
* Use declarative class for config options
2014-05-13
Fred Emmott <[email protected]>:
* Test master upstream of magento2
2014-05-13
Eugene Letuchy <[email protected]>:
* add 'classname' to hhvm as an alias for 'string'
2014-05-13
Paul Tarjan <[email protected]>:
* default fastcgi to listen on 127.0.0.1
2014-05-13
Drew Paroski <[email protected]>:
* Fix OutputCollection::{add,set}All() signature in .hhi files
2014-05-13
Lakshman Kakkirala <[email protected]>:
* Task #2905431 : Strip quotes from the result of _toDebugDisplay when showd in hphpd
2014-05-13
Dario Russi <[email protected]>:
* Created uncounted string in APC all the time and uncounted array more often if the InnerUncounted runtime option is on
2014-05-13
Brian Scaturro <[email protected]>:
* provide support for exit as a function
2014-05-13
Bert Maher <[email protected]>:
* Fix .section/.size for OSX enterTCHelper
2014-05-13
Eugene Letuchy <[email protected]>:
* support printing compile command in hhvm wrapper
* better error message for missing arguments and type constraint
2014-05-13
Liran Nuna <[email protected]>:
* Added ** and **= operators to HHVM
2014-05-13
bsimmers <[email protected]>:
* Clean up RepoAuthType assertions
2014-05-13
Owen Yamauchi <[email protected]>:
* Add specialized bytecode and IR for the silence operator
2014-05-13
Erik Bernhardson <[email protected]>:
* Replace json decoder with json-c library
2014-05-13
Paul Tarjan <[email protected]>:
* add MySQL.SlowQueryThreshhold to test configs
2014-05-13
Bert Maher <[email protected]>:
* Tweaks to improve linker script coverage
2014-05-12
Tim Starling <[email protected]>:
* Document VMRegAnchor and isVMFrame()
2014-05-12
aravind <[email protected]>:
* Implement type hierarchy for interfaces
* Simplify ExtendsClass for AttrNoOverride
2014-05-12
Jan Oravec <[email protected]>:
* Fallback to fp->m_func->cls() if fp->m_this was wiped
2014-05-12
Bert Maher <[email protected]>:
* Fast path array new_iter_array_key when val/key locals are uncounted
2014-05-12
Giridhar Murthy <[email protected]>:
* Fix for task #3692814
2014-05-12
Guilherme Ottoni <[email protected]>:
* Fix logic to decide when to emit profiling translations
2014-05-12
Witchakorn Kamolpornwijit <[email protected]>:
* Make date_format() independent of format() method. Should fix #2580
2014-05-12
Lee Valentine <[email protected]>:
* Process Double Response to check if type is BULK and numeric
2014-05-12
Tim Siebels <[email protected]>:
* DatePeriod iterates one day too much
2014-05-12
Witchakorn Kamolpornwijit <[email protected]>:
* Make PDOException a subclass of RuntimeException.
2014-05-12
Joe Marrama <[email protected]>:
* IntlDateFormatter->format now formats DateTime objects as well as timestamps
2014-05-12
Drew Ewing <[email protected]>:
* Full GD Support in Linux
2014-05-12
Jan Pingel <[email protected]>:
* Fix for setting multiple cookies with the same name and added max-age support
2014-05-12
Paul Tarjan <[email protected]>:
* remove register_cleanup_function
2014-05-12
Ori Livneh <[email protected]>:
* Handle UNIX domain sockets correctly in memcache & memcached extensions
2014-05-12
Daniel Sloof <[email protected]>:
* allow redirects in SoapClient requests
2014-05-12
ptarjan <[email protected]>:
* revert sql3 update because of https://github.com/hhvm/hhvm-third-party/issues/4
2014-05-10
Paul Tarjan <[email protected]>:
* fix xml re-entry
2014-05-10
Josh Watzman <[email protected]>:
* Move hphp/tools/import_zend_test.py
2014-05-10
Paul Tarjan <[email protected]>:
* link to new wiki pages
2014-05-10
aravind <[email protected]>:
* modify FileUtil::canonicalize() to return String
2014-05-10
Joel Beales <[email protected]>:
* Json output mode for hh_client status
2014-05-10
Julien Verlaguet <[email protected]>:
* add support for filtering in find
2014-05-10
Eugene Letuchy <[email protected]>:
* reflection: definalize Reflection{Function|Method}
2014-05-10
Edwin Smith <[email protected]>:
* Support far calls to native builtins
2014-05-10
Eugene Letuchy <[email protected]>:
* hack: hack/src/{more_tests=>typecheck}
* typechecker: improve handling of builtins in hh_single_typecheck
* teach typechecker about Container/KeyedContainer
* introduce container (something that matches arrays and collections only)
2014-05-10
Paul Tarjan <[email protected]>:
* Allow parser to be generated with bison 3
2014-05-10
Sean Cannella <[email protected]>:
* Refactor reflection extension code
2014-05-10
Jordan DeLong <[email protected]>:
* Fix issues in the array set operations for possibly-empty arrays
2014-05-10
Paul Tarjan <[email protected]>:
* stop using utf16_to_utf8 while decoding
2014-05-10
Bert Maher <[email protected]>:
* Revert "fix get_object_vars for simplexml objects"
2014-05-10
Alex Malyshev <[email protected]>:
* Null out $this in EventHook::onFunctionExit
2014-05-10
Guilherme Ottoni <[email protected]>:
* Add function names to TransRecs
2014-05-10
Josh Watzman <[email protected]>:
* Rename `caml_realpath` to `hh_realpath`
2014-05-10
Fred Emmott <[email protected]>:
* Fix file_exists() and related functions for file:// URIs
2014-05-10
bsimmers <[email protected]>:
* Add server_is_warmed_up function
* Remove some dead Stats code
2014-05-10
Guilherme Ottoni <[email protected]>:
* Dispatch whole BB to the interpreter after reaching JitMaxTranslations
2014-05-10
Owen Yamauchi <[email protected]>:
* Always turn off FrameState::m_building in reoptimize
2014-05-08
ptarjan <[email protected]>:
* update third-party (sqlite3 upgrade)
2014-05-07
Daniel Sloof <[email protected]>:
* fix get_object_vars for simplexml objects
2014-05-07
Jeff Chan <[email protected]>:
* Add fastroute to framework test runner. Already at 100%
2014-05-07
Camillus Gerard Cai <[email protected]>:
* Added JShrink framework to test suite. (100%)
2014-05-07
Joe Marrama <[email protected]>:
* Fix AppendIterator to properly handle empty child iterators.
2014-05-07
Witchakorn Kamolpornwijit <[email protected]>:
* Switch to Joomla 3.3 (latest stable release)
2014-05-07
Jordan DeLong <[email protected]>:
* Add support for IndexedMemoryRef on inc and dec opcodes
* Fix IRBuilder::ifThen when branches are optimized out
2014-05-07
Fred Emmott <[email protected]>:
* RFC: Include quick interp tests in framework test runner
2014-05-07
Joel Beales <[email protected]>:
* hh_client --search. Monocle but in Hack Server instead.
2014-05-07
Paul Tarjan <[email protected]>:
* automatically copy the lexer to the source tree
* allocate module numbers during moduleInit
2014-05-07
Jordan DeLong <[email protected]>:
* Remove some dead comments
* Add an assert that we're not trying to analyze invalid opcdes
2014-05-07
Eugene Letuchy <[email protected]>:
* introduce DebuggerReflection, speed up ReflectionClass method calc
* reflection: remove hphp_get_{closure|method|function}_info builtins
* reflection: remove old impls of ReflectionFunction/Method
* reflection perf: implement ReflectionFunction/Method using HNI
2014-05-07
Scott MacVicar <[email protected]>:
* Add json_last_error()
2014-05-07
Fred Emmott <[email protected]>:
* Make stream URI detection match PHP5
2014-05-07
mwilliams <[email protected]>:
* Fix some issues with Func::setFullName
2014-05-07
Owen Yamauchi <[email protected]>:
* Remove vsize check/call from ConvArrToBool
2014-05-07
Camillus Gerard Cai <[email protected]>:
* Test case for htmlentities() on UTF-8 strings.
2014-05-07
James Miller <[email protected]>:
* auto import 'this'
2014-05-07
Liran Nuna <[email protected]>:
* Implemented PHP5.6's use const feature
2014-05-07
Jordan DeLong <[email protected]>:
* Add an API for profiling arbitrary things to use during PGO translations
* Change TransKind into an enum class
* Make Call not require loading everything from the stack
* Remove dead references to Type::None in the ir.spec
* Some cleanup on the IR Call instruction
* Convert SpillFrame to deal with Nullptr instead of InitNull
* Move the rest of LdObjMethod's constants to ExtraData
2014-05-07
Bert Maher <[email protected]>:
* Remove constrainBase assertion when HHBBC infers more precise type
2014-05-07
aravind <[email protected]>:
* Check for unbalanced arrays only when growing
2014-05-07
Fred Emmott <[email protected]>:
* Rename Yii test suite
2014-05-07
Edwin Smith <[email protected]>:
* In ConvBoolToDbl, zero-extend before converting.
2014-05-06
Joel Marcey <[email protected]>:
* Fix OSS Build due to tuple changes
2014-05-06
Dan Stefan Oprean <[email protected]>:
* Redis EVAL and EVALSHA fixes and tests
2014-05-06
Jordan DeLong <[email protected]>:
* Remove HhbcTranslator::assertClass
2014-05-06
bill fumerola <[email protected]>:
* shuffle(...),array_rand(..., $num>1): pre-allocate fixed array
* array_fill(): reserve space in return array
* array_combine(): reserve space in the return array
2014-05-06
Jan Oravec <[email protected]>:
* Rename Continuation to Generator
2014-05-06
Owen Yamauchi <[email protected]>:
* More clang fixes
2014-05-06
Drew Paroski <[email protected]>:
* Add slice() method to collections
2014-05-06
bsimmers <[email protected]>:
* Fix tracelet region selector in ARM mode
2014-05-06
Josh Watzman <[email protected]>:
* Remove bitrotted files
2014-05-05
Tim Starling <[email protected]>:
* Use /bin/bash for hphpize
2014-05-05
Rafe Kettler <[email protected]>:
* Calling putenv with a key and no value should unset environment variables
2014-05-05
Jordan DeLong <[email protected]>:
* Make tuple() as efficient as array()
* Bring back closure name hashes
* Revert "Revert "Infer types of closure local variables, including captured variables""
2014-05-05
Edwin Smith <[email protected]>:
* rename dumpTrace to printUnit
2014-05-05
aravind <[email protected]>:
* Avoid string copying in Transport::sendRawLocked
* Tweak MixedArray::findForInsert
* Use String in php_pcre_replace
2014-05-05
Jordan DeLong <[email protected]>:
* Remove prototype for function that doesn't exist
2014-05-05
Eugene Letuchy <[email protected]>:
* variadics: more compact representations for func num(Variadic)Params
2014-05-05
Jan Oravec <[email protected]>:
* Audit existing isAsync() / isGenerator() calls
* Don't mark async functions and generators as MayUseVV
2014-05-05
Dario Russi <[email protected]>:
* Fix escalateForSort in APLLocalArray
2014-05-05
Owen Yamauchi <[email protected]>:
* Re-enable recurse.php without frame elision
2014-05-05
Jan Oravec <[email protected]>:
* Devirtualize c_WaitableWaitHandle
* Introduce WaitHandle::Kind
* Merge Static{Result,Exception}WaitHandles into StaticWaitHandle
* Allow empty return in generators in <?hh
2014-05-05
Owen Yamauchi <[email protected]>:
* Get this thing compilable by clang
2014-05-02
Bert Maher <[email protected]>:
* Use m_mainCode or m_stubsCode in cg instead of mcg->code
2014-05-02
aravind <[email protected]>:
* Replace malloc with smart versions (zend-string)
2014-05-02
Jan Oravec <[email protected]>:
* Kill dead code -- special casing for generators that never happens
2014-05-02
Jordan DeLong <[email protected]>:
* Do some additional assert opcode filtering
* Add hhbbc stats for types on IterInit and IterInitK
* Assume NewPackedArray instructions return a packed array
* Make it easy to call ArrayData virtuals from the TC
* Add support for x64 imm(,%reg,scale) addressing
* Some cleanup to CppCall
* Add 'PackedN' array types to the array type table
* Reflow types if splitCriticalEdges removes unreachable blocks
2014-05-02
Eugene Letuchy <[email protected]>:
* collections: correct key conversion in array_map
2014-05-02
Jordan DeLong <[email protected]>:
* Remove a weird assignment in Array::attach
* Use case insensitive comparison for EmittedClosures
* Genericize Assert* opcodes so they can contain array information
2014-05-02
Dario Russi <[email protected]>:
* Disable inlining test
2014-05-02
Daniel Sloof <[email protected]>:
* Don't sweep SimpleXMLElementIterator
2014-05-02
Alex Malyshev <[email protected]>:
* Don't promote the empty array to mixed in EmptyArray::Merge
2014-05-02
Joe Marrama <[email protected]>:
* Fix AppendIterator to handle empty leading child iterators
2014-05-02
bsimmers <[email protected]>:
* More better error messages when repo fails to init schema
* More ir guard relaxation tweaks
* Optimize DecRefLoc properly
2014-05-02
Bert Maher <[email protected]>:
* Remove return value of Variant::set
2014-05-02
Yoann Padioleau <[email protected]>:
* RFC support for function &xxx in decl mode
2014-05-02
Misha Shneerson <[email protected]>:
* Allow threads to be exempt from HHVM logging limits
2014-05-02
Jan Oravec <[email protected]>:
* Kill c_WaitableWaitHandle::m_creator
2014-05-02
Liran Nuna <[email protected]>:
* PHP5.6 compatibility: use function import
2014-05-02
bsimmers <[email protected]>:
* InstanceBits' maps need to be case-insensitive
2014-05-02
Max Wang <[email protected]>:
* Try to convert arrays to Packed in GetScalarArray
2014-05-02
mwilliams <[email protected]>:
* Don't destroy m_headerCallback after sweeping
2014-05-02
Owen Yamauchi <[email protected]>:
* Fix inlined frame elision
2014-05-02
Sara Golemon <[email protected]>:
* Re-enable redefining the file:// wrapper.
2014-05-02
Jan Oravec <[email protected]>:
* Avoid gcc warning and move away from cellSet(make_tv<KindOfNull>(), ...)
2014-05-02
bill fumerola <[email protected]>:
* mark throw_invalid_argument with __attribute__((cold))
2014-05-02
aravind <[email protected]>:
* Replace malloc calls with smart versions (zend-scanf)
2014-05-02
bsimmers <[email protected]>:
* Fix Cns ir opcode output types
2014-05-02
aravind <[email protected]>:
* Replace some malloc calls with smart versions
2014-05-02
Otto Ebeling <[email protected]>:
* backport CVE-2013-4248
2014-05-02
aravind <[email protected]>:
* Replace malloc with smart versions (zend-string)
2014-05-02
Liran Nuna <[email protected]>:
* Corrected a bug with multiple const defs in one line
2014-05-02
Alex Malyshev <[email protected]>:
* Add support for JIT'ing pseudomains
2014-05-02
Eugene Letuchy <[email protected]>:
* hack: correctly type __call: this in generic classes ...
2014-05-02
aravind <[email protected]>:
* Allocate Func* table at negative offset from Class*
2014-05-02
Guilherme Ottoni <[email protected]>:
* Make handling of code.hot overflows more robust
* Change Eval.HotFuncThreshold to 40
2014-05-02
mwilliams <[email protected]>:
* Catch server errors sooner
2014-05-02
Mark McDuff <[email protected]>:
* Thrift HHVM extension: support oneway flag in thrift_protocol_write_binary/thrift_protocol_write_compact
2014-05-02
Jordan DeLong <[email protected]>:
* Don't simplify away ConvObjToBool when it could be a collection interface
2014-05-02
Guilherme Ottoni <[email protected]>:
* Fix segfault and infinite recursion in fileinfo extension
2014-05-02
Bert Maher <[email protected]>:
* Delete docs for deleted IR opcode, AllocObjFast
2014-05-02
Josh Watzman <[email protected]>:
* hhi sync www => fbcode
2014-05-02
Otto Ebeling <[email protected]>:
* Binary safety for ext_openssl ASN1 timestamp parsing
2014-05-02
bsimmers <[email protected]>:
* Revert "Infer types of closure local variables, including captured variables"
2014-05-02
Otto Ebeling <[email protected]>:
* Drop supplementary groups when changing to non-root
2014-05-02
Edward Kandrot <[email protected]>:
* Add a random offset to the Xenon initial timer
2014-04-28
Dario Russi <[email protected]>:
* Remove getAPCHandle()
2014-04-28
mwilliams <[email protected]>:
* Fix issue with UseVoidReturn
2014-04-28
Jordan DeLong <[email protected]>:
* Infer types of closure local variables, including captured variables
2014-04-28
mwilliams <[email protected]>:
* Resolve systemlib constants at compile time
2014-04-28
aravind <[email protected]>:
* Support nonzero Jmp-args in eliminateJmp
2014-04-28
Jordan DeLong <[email protected]>:
* Use case-sensitive compares everywhere for http_response_header
* Fix a bug that prevented propagating return types of 86ctors
* Implement FPushFuncU in hhbbc
2014-04-28
Jan Oravec <[email protected]>:
* Resume resumables natively
2014-04-28
Josh Watzman <[email protected]>:
* Pass -g to gcc when building C components
2014-04-28
mwilliams <[email protected]>:
* Fix InvalidDerivation warnings in CodeError.js
2014-04-28
Sean Cannella <[email protected]>:
* Import round() table optimizations from php-src
2014-04-28
Jordan DeLong <[email protected]>:
* Delete bytecode Peephole optimizer
* Remove hhbbc's "single unit" mode for now
* Update hhbbc/README to reflect that it's on now
* Remove most of annotation.cpp, and some other code gated on !UsedHHBBC
* Remove unit MetaInfo-related code
2014-04-28
Julien Verlaguet <[email protected]>:
* refactoring of "cat"
* faster build
2014-04-28
Jason Evans <[email protected]>:
* Fix moveToAlign() regression.
2014-04-28
Bert Maher <[email protected]>:
* Create phis for locals
2014-04-28
Avik Chaudhuri <[email protected]>:
* extra options
2014-04-28
Josh Watzman <[email protected]>:
* Unbreak the build
* Remove more bogus asserts
2014-04-28
aravind <[email protected]>:
* Print DataType for BadMethodCallException
2014-04-28
Owen Yamauchi <[email protected]>:
* Macro-generate more of IRTranslator
2014-04-28
mwilliams <[email protected]>:
* Fix free of "" in rfc1867PostHandler
2014-04-28
Jan Oravec <[email protected]>:
* Clean up internal generator state machine.
2014-04-28
Drew Paroski <[email protected]>:
* firstValue(), firstKey(), lastValue(), lastKey()
2014-04-28
Liran Nuna <[email protected]>:
* Removed unused StaticString
2014-04-28
Drew Paroski <[email protected]>:
* concat()
2014-04-28
Jan Oravec <[email protected]>:
* Pass SrcKey instead of Offset to REQ_BIND_{SIDE_EXIT,JMP,JCC,ADDR}
* Merge AsyncAwait and AsyncSuspend opcodes into Await opcode
2014-04-28
Jordan DeLong <[email protected]>:
* Revert "Convert ext StringBuffer to HNI"
* Remove a few dead tx64-era declarations
* Fix RuntimeType::operator== on types with knownClass or array kinds
2014-04-28
Drew Paroski <[email protected]>:
* Fix iteration bug with immutable collections
2014-04-28
Joel Beales <[email protected]>:
* JSON output mode for hh_client --refactor
2014-04-28
Alex Malyshev <[email protected]>:
* Improve return types of some InterpOnes from Cell to UncountedInit
2014-04-28
Sara Golemon <[email protected]>:
* Add remaining FB-only IDL based headers (guarded)
2014-04-23
Dario Russi <[email protected]>:
* Define ODS timeseries for APC memory usage
2014-04-23
Sara Golemon <[email protected]>:
* Convert ext/openssl to HNI
2014-04-23
mwilliams <[email protected]>:
* Revert a couple of file wrapper diffs
2014-04-23
Liran Nuna <[email protected]>:
* DateTimeZone::listIdentifiers now accepts arguments
2014-04-23
Josh Watzman <[email protected]>:
* Clarify Hack license
2014-04-23
aravind <[email protected]>:
* Misc fixes for type-system/interp.
2014-04-23
Joel Beales <[email protected]>:
* Fix printing of types for autocomplete, autocomplete argument tooltips, and type at position after namespace change
* hh_client --refactor. Command line refactoring tool
* Fix Find Refs For Namespaces
2014-04-23
Alex Malyshev <[email protected]>:
* Update docs for LdLoc and LdLocAddr
2014-04-23
Joel Beales <[email protected]>:
* Fix identify function for namespaces
* Fix Autocomplete globals for namespaces
* Strip namespace from OutlineView
2014-04-23
Dwayne Reeves <[email protected]>:
* Make GenReadApi covariant
2014-04-23
Fred Emmott <[email protected]>:
* Add CakePHP3: 96.67%
2014-04-23
Alex Malyshev <[email protected]>:
* Fix IR generation for InitThisLoc
2014-04-23
Brett Simmers <[email protected]>:
* More ir guard relaxation cleanup
2014-04-23
Jan Oravec <[email protected]>:
* Track decrefd locals state explicitly.
2014-04-23
Fred Emmott <[email protected]>:
* ignore_errors means ignore server errors, not all errors
* Fix passing null as an object param to builtins
* Make compress.zlib support wrapping other URIs
2014-04-23
Jason Reed <[email protected]>:
* Fix bug in xhp parsing
2014-04-23
Liran Nuna <[email protected]>:
* Corrected error messages relating to array_column and default values
2014-04-21
Daniel Sloof <[email protected]>:
* fix soap encoding on non-nillable empty properties
2014-04-21
Sara Golemon <[email protected]>:
* Allow replacing the file:// wrapper in a script
2014-04-21
Jason Evans <[email protected]>:
* Refactor back ends into implementations of BackEnd.
2014-04-21
bsimmers <[email protected]>:
* Better error when TC is full
* Eliminate hphp-only test runs in repo mode
2014-04-21
Joel Low <[email protected]>:
* Fix potential null pointer dereference.
2014-04-21
Alexander Lisachenko <[email protected]>:
* Add missed 'name' property for ReflectionFunction, resolves #2492
2014-04-21
Sara Golemon <[email protected]>:
* submodule update must be recursive
* Add hash_equals() from PHP 5.6
2014-04-21
Liran Nuna <[email protected]>:
* Close a memory leak when uploading a file
2014-04-21
Max Wang <[email protected]>:
* Disregard presence of init methods for LdClsPropAddrKnown
2014-04-21
Brett Simmers <[email protected]>:
* Change AssertType and AssertStk to refine their source type through typeParam
2014-04-21
Sara Golemon <[email protected]>:
* Add NativeDataInfo Sweep mechanism
2014-04-21
Joel Beales <[email protected]>:
* Make hack javascript work with js_of_ocaml 2.0
2014-04-21
Sean Cannella <[email protected]>:
* Remove legacy webserver from non-X64 Linux
2014-04-21
Owen Yamauchi <[email protected]>:
* Replace IRTranslator::translate* with macros for nullary opcodes
2014-04-21
Sara Golemon <[email protected]>:
* Update third-party to fix MacOSX
2014-04-21
Jan Oravec <[email protected]>:
* Kill async stack overflow checks
2014-04-20
Jan Oravec <[email protected]>:
* Make arGetSfp() more sane and rename it to sfp()
* Move m_savedRbp spill from FPushFunc*/SpillFrame to FCall/Call
2014-04-19
Joel Marcey <[email protected]>:
* Spyc is not required in Framework.php
2014-04-19
mwilliams <[email protected]>:
* Fix typo in CURLFile.php
* Fix undefined variable
2014-04-19
Edwin Smith <[email protected]>:
* Handle loops in computeLiveRegs
2014-04-19
Sean Cannella <[email protected]>:
* Fix hhprof decoding of SrcKey "addresses"
2014-04-19
Bert Maher <[email protected]>:
* Fix postconditions by saving FrameState at terminal instructions
2014-04-18
Sara Golemon <[email protected]>:
* use a direct checkout of third-party
2014-04-18
Guilherme Ottoni <[email protected]>:
* "Insane Poetry" NEWS
2014-04-18
Fred Emmott <[email protected]>:
* implement ignore_errors stream context option
2014-04-18
mwilliams <[email protected]>:
* Pass error message to autoload handler
2014-04-18
Andrey Sukhachev <[email protected]>:
* Re-apply: Make getStaticVariables() and getClosure() more compatible with PHP5.
2014-04-18
Eugene Letuchy <[email protected]>:
* use ArrayInit in array_column
2014-04-18
Fred Emmott <[email protected]>:
* Fix behavior of http_response_header
2014-04-18
Jan Oravec <[email protected]>:
* Pass the current context class explicitly to the LdObjMethod
2014-04-18
Liran Nuna <[email protected]>:
* Fixes to mb_convert_variables to match php5
2014-04-18
Josh Watzman <[email protected]>:
* Fix namespaced classes referring to classes in no namespace
2014-04-18
Paul Tarjan <[email protected]>:
* actually unopen source things that aren't open source
2014-04-18