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 2342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2353 Handle<Map> map); | 2353 Handle<Map> map); |
2354 HInstruction* BuildStoreKeyedGeneric(HValue* object, | 2354 HInstruction* BuildStoreKeyedGeneric(HValue* object, |
2355 HValue* key, | 2355 HValue* key, |
2356 HValue* value); | 2356 HValue* value); |
2357 | 2357 |
2358 HValue* BuildContextChainWalk(Variable* var); | 2358 HValue* BuildContextChainWalk(Variable* var); |
2359 | 2359 |
2360 HInstruction* BuildThisFunction(); | 2360 HInstruction* BuildThisFunction(); |
2361 | 2361 |
2362 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object, | 2362 HInstruction* BuildFastLiteral(Handle<JSObject> boilerplate_object, |
2363 AllocationSiteContext* site_context); | 2363 AllocationSiteUsageContext* site_context); |
2364 | 2364 |
2365 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, | 2365 void BuildEmitObjectHeader(Handle<JSObject> boilerplate_object, |
2366 HInstruction* object); | 2366 HInstruction* object); |
2367 | 2367 |
2368 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object, | 2368 void BuildInitElementsInObjectHeader(Handle<JSObject> boilerplate_object, |
2369 HInstruction* object, | 2369 HInstruction* object, |
2370 HInstruction* object_elements); | 2370 HInstruction* object_elements); |
2371 | 2371 |
2372 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, | 2372 void BuildEmitInObjectProperties(Handle<JSObject> boilerplate_object, |
2373 HInstruction* object, | 2373 HInstruction* object, |
2374 AllocationSiteContext* site_context); | 2374 AllocationSiteUsageContext* site_context); |
2375 | 2375 |
2376 void BuildEmitElements(Handle<JSObject> boilerplate_object, | 2376 void BuildEmitElements(Handle<JSObject> boilerplate_object, |
2377 Handle<FixedArrayBase> elements, | 2377 Handle<FixedArrayBase> elements, |
2378 HValue* object_elements, | 2378 HValue* object_elements, |
2379 AllocationSiteContext* site_context); | 2379 AllocationSiteUsageContext* site_context); |
2380 | 2380 |
2381 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements, | 2381 void BuildEmitFixedDoubleArray(Handle<FixedArrayBase> elements, |
2382 ElementsKind kind, | 2382 ElementsKind kind, |
2383 HValue* object_elements); | 2383 HValue* object_elements); |
2384 | 2384 |
2385 void BuildEmitFixedArray(Handle<FixedArrayBase> elements, | 2385 void BuildEmitFixedArray(Handle<FixedArrayBase> elements, |
2386 ElementsKind kind, | 2386 ElementsKind kind, |
2387 HValue* object_elements, | 2387 HValue* object_elements, |
2388 AllocationSiteContext* site_context); | 2388 AllocationSiteUsageContext* site_context); |
2389 | 2389 |
2390 void AddCheckPrototypeMaps(Handle<JSObject> holder, | 2390 void AddCheckPrototypeMaps(Handle<JSObject> holder, |
2391 Handle<Map> receiver_map); | 2391 Handle<Map> receiver_map); |
2392 | 2392 |
2393 void AddCheckConstantFunction(Handle<JSObject> holder, | 2393 void AddCheckConstantFunction(Handle<JSObject> holder, |
2394 HValue* receiver, | 2394 HValue* receiver, |
2395 Handle<Map> receiver_map); | 2395 Handle<Map> receiver_map); |
2396 | 2396 |
2397 // The translation state of the currently-being-translated function. | 2397 // The translation state of the currently-being-translated function. |
2398 FunctionState* function_state_; | 2398 FunctionState* function_state_; |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2578 } | 2578 } |
2579 | 2579 |
2580 private: | 2580 private: |
2581 HGraphBuilder* builder_; | 2581 HGraphBuilder* builder_; |
2582 }; | 2582 }; |
2583 | 2583 |
2584 | 2584 |
2585 } } // namespace v8::internal | 2585 } } // namespace v8::internal |
2586 | 2586 |
2587 #endif // V8_HYDROGEN_H_ | 2587 #endif // V8_HYDROGEN_H_ |
OLD | NEW |