| 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 2226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2237 HValue* value, | 2237 HValue* value, |
| 2238 Handle<Map> map); | 2238 Handle<Map> map); |
| 2239 HInstruction* BuildStoreKeyedGeneric(HValue* object, | 2239 HInstruction* BuildStoreKeyedGeneric(HValue* object, |
| 2240 HValue* key, | 2240 HValue* key, |
| 2241 HValue* value); | 2241 HValue* value); |
| 2242 | 2242 |
| 2243 HValue* BuildContextChainWalk(Variable* var); | 2243 HValue* BuildContextChainWalk(Variable* var); |
| 2244 | 2244 |
| 2245 HInstruction* BuildThisFunction(); | 2245 HInstruction* BuildThisFunction(); |
| 2246 | 2246 |
| 2247 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object, | 2247 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object); |
| 2248 Handle<Object> allocation_site, | |
| 2249 AllocationSiteMode mode); | |
| 2250 | 2248 |
| 2251 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, | 2249 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, |
| 2252 HInstruction* object); | 2250 HInstruction* object); |
| 2253 | 2251 |
| 2254 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object, | 2252 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object, |
| 2255 HInstruction* object, | 2253 HInstruction* object, |
| 2256 HInstruction* object_elements); | 2254 HInstruction* object_elements); |
| 2257 | 2255 |
| 2258 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, | 2256 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, |
| 2259 HInstruction* object); | 2257 HInstruction* object); |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2461 } | 2459 } |
| 2462 | 2460 |
| 2463 private: | 2461 private: |
| 2464 HGraphBuilder* builder_; | 2462 HGraphBuilder* builder_; |
| 2465 }; | 2463 }; |
| 2466 | 2464 |
| 2467 | 2465 |
| 2468 } } // namespace v8::internal | 2466 } } // namespace v8::internal |
| 2469 | 2467 |
| 2470 #endif // V8_HYDROGEN_H_ | 2468 #endif // V8_HYDROGEN_H_ |
| OLD | NEW |