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 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1131 bool smi_and_map_check); | 1131 bool smi_and_map_check); |
1132 HInstruction* BuildStoreNamedGeneric(HValue* object, | 1132 HInstruction* BuildStoreNamedGeneric(HValue* object, |
1133 Handle<String> name, | 1133 Handle<String> name, |
1134 HValue* value); | 1134 HValue* value); |
1135 HInstruction* BuildStoreKeyedGeneric(HValue* object, | 1135 HInstruction* BuildStoreKeyedGeneric(HValue* object, |
1136 HValue* key, | 1136 HValue* key, |
1137 HValue* value); | 1137 HValue* value); |
1138 | 1138 |
1139 HValue* BuildContextChainWalk(Variable* var); | 1139 HValue* BuildContextChainWalk(Variable* var); |
1140 | 1140 |
| 1141 HInstruction* BuildThisFunction(); |
| 1142 |
1141 void AddCheckConstantFunction(Call* expr, | 1143 void AddCheckConstantFunction(Call* expr, |
1142 HValue* receiver, | 1144 HValue* receiver, |
1143 Handle<Map> receiver_map, | 1145 Handle<Map> receiver_map, |
1144 bool smi_and_map_check); | 1146 bool smi_and_map_check); |
1145 | 1147 |
1146 Zone* zone() { return zone_; } | 1148 Zone* zone() { return zone_; } |
1147 | 1149 |
1148 // The translation state of the currently-being-translated function. | 1150 // The translation state of the currently-being-translated function. |
1149 FunctionState* function_state_; | 1151 FunctionState* function_state_; |
1150 | 1152 |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1412 const char* filename_; | 1414 const char* filename_; |
1413 HeapStringAllocator string_allocator_; | 1415 HeapStringAllocator string_allocator_; |
1414 StringStream trace_; | 1416 StringStream trace_; |
1415 int indent_; | 1417 int indent_; |
1416 }; | 1418 }; |
1417 | 1419 |
1418 | 1420 |
1419 } } // namespace v8::internal | 1421 } } // namespace v8::internal |
1420 | 1422 |
1421 #endif // V8_HYDROGEN_H_ | 1423 #endif // V8_HYDROGEN_H_ |
OLD | NEW |