| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1552 void HandlePolymorphicCallNamed(Call* expr, | 1552 void HandlePolymorphicCallNamed(Call* expr, |
| 1553 HValue* receiver, | 1553 HValue* receiver, |
| 1554 SmallMapList* types, | 1554 SmallMapList* types, |
| 1555 Handle<String> name); | 1555 Handle<String> name); |
| 1556 void HandleLiteralCompareTypeof(CompareOperation* expr, | 1556 void HandleLiteralCompareTypeof(CompareOperation* expr, |
| 1557 HTypeof* typeof_expr, | 1557 HTypeof* typeof_expr, |
| 1558 Handle<String> check); | 1558 Handle<String> check); |
| 1559 void HandleLiteralCompareNil(CompareOperation* expr, | 1559 void HandleLiteralCompareNil(CompareOperation* expr, |
| 1560 HValue* value, | 1560 HValue* value, |
| 1561 NilValue nil); | 1561 NilValue nil); |
| 1562 void HandleTripleShiftZeroCompare(CompareOperation* expr, HValue* input); |
| 1562 | 1563 |
| 1563 HInstruction* BuildStringCharCodeAt(HValue* context, | 1564 HInstruction* BuildStringCharCodeAt(HValue* context, |
| 1564 HValue* string, | 1565 HValue* string, |
| 1565 HValue* index); | 1566 HValue* index); |
| 1566 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 1567 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
| 1567 HValue* left, | 1568 HValue* left, |
| 1568 HValue* right); | 1569 HValue* right); |
| 1569 HInstruction* BuildIncrement(bool returns_original_input, | 1570 HInstruction* BuildIncrement(bool returns_original_input, |
| 1570 CountOperation* expr); | 1571 CountOperation* expr); |
| 1571 HInstruction* BuildLoadKeyedGeneric(HValue* object, | 1572 HInstruction* BuildLoadKeyedGeneric(HValue* object, |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1936 EmbeddedVector<char, 64> filename_; | 1937 EmbeddedVector<char, 64> filename_; |
| 1937 HeapStringAllocator string_allocator_; | 1938 HeapStringAllocator string_allocator_; |
| 1938 StringStream trace_; | 1939 StringStream trace_; |
| 1939 int indent_; | 1940 int indent_; |
| 1940 }; | 1941 }; |
| 1941 | 1942 |
| 1942 | 1943 |
| 1943 } } // namespace v8::internal | 1944 } } // namespace v8::internal |
| 1944 | 1945 |
| 1945 #endif // V8_HYDROGEN_H_ | 1946 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |