OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 Handle<String> name); | 871 Handle<String> name); |
872 | 872 |
873 HCompareSymbolEq* BuildSymbolCompare(HValue* left, | 873 HCompareSymbolEq* BuildSymbolCompare(HValue* left, |
874 HValue* right, | 874 HValue* right, |
875 Token::Value op); | 875 Token::Value op); |
876 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, | 876 HStringCharCodeAt* BuildStringCharCodeAt(HValue* string, |
877 HValue* index); | 877 HValue* index); |
878 HInstruction* BuildBinaryOperation(BinaryOperation* expr, | 878 HInstruction* BuildBinaryOperation(BinaryOperation* expr, |
879 HValue* left, | 879 HValue* left, |
880 HValue* right); | 880 HValue* right); |
881 HInstruction* BuildBinaryOperation(Token::Value op, | |
882 HValue* left, | |
883 HValue* right, | |
884 TypeInfo info); | |
885 HInstruction* BuildIncrement(bool returns_original_input, | 881 HInstruction* BuildIncrement(bool returns_original_input, |
886 CountOperation* expr); | 882 CountOperation* expr); |
887 HLoadNamedField* BuildLoadNamedField(HValue* object, | 883 HLoadNamedField* BuildLoadNamedField(HValue* object, |
888 Property* expr, | 884 Property* expr, |
889 Handle<Map> type, | 885 Handle<Map> type, |
890 LookupResult* result, | 886 LookupResult* result, |
891 bool smi_and_map_check); | 887 bool smi_and_map_check); |
892 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); | 888 HInstruction* BuildLoadNamedGeneric(HValue* object, Property* expr); |
893 HInstruction* BuildLoadKeyedFastElement(HValue* object, | 889 HInstruction* BuildLoadKeyedFastElement(HValue* object, |
894 HValue* key, | 890 HValue* key, |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1195 const char* filename_; | 1191 const char* filename_; |
1196 HeapStringAllocator string_allocator_; | 1192 HeapStringAllocator string_allocator_; |
1197 StringStream trace_; | 1193 StringStream trace_; |
1198 int indent_; | 1194 int indent_; |
1199 }; | 1195 }; |
1200 | 1196 |
1201 | 1197 |
1202 } } // namespace v8::internal | 1198 } } // namespace v8::internal |
1203 | 1199 |
1204 #endif // V8_HYDROGEN_H_ | 1200 #endif // V8_HYDROGEN_H_ |
OLD | NEW |