| 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 Handle<JSObject> holder, | 547 Handle<JSObject> holder, |
| 548 Register receiver, | 548 Register receiver, |
| 549 Register name_reg, | 549 Register name_reg, |
| 550 Register scratch1, | 550 Register scratch1, |
| 551 Register scratch2, | 551 Register scratch2, |
| 552 Register scratch3, | 552 Register scratch3, |
| 553 Handle<AccessorInfo> callback, | 553 Handle<AccessorInfo> callback, |
| 554 Handle<String> name, | 554 Handle<String> name, |
| 555 Label* miss); | 555 Label* miss); |
| 556 | 556 |
| 557 void GenerateDictionaryLoadCallback(Register receiver, |
| 558 Register name_reg, |
| 559 Register scratch1, |
| 560 Register scratch2, |
| 561 Register scratch3, |
| 562 Handle<AccessorInfo> callback, |
| 563 Handle<String> name, |
| 564 Label* miss); |
| 565 |
| 557 void GenerateLoadConstant(Handle<JSObject> object, | 566 void GenerateLoadConstant(Handle<JSObject> object, |
| 558 Handle<JSObject> holder, | 567 Handle<JSObject> holder, |
| 559 Register receiver, | 568 Register receiver, |
| 560 Register scratch1, | 569 Register scratch1, |
| 561 Register scratch2, | 570 Register scratch2, |
| 562 Register scratch3, | 571 Register scratch3, |
| 563 Handle<JSFunction> value, | 572 Handle<JSFunction> value, |
| 564 Handle<String> name, | 573 Handle<String> name, |
| 565 Label* miss); | 574 Label* miss); |
| 566 | 575 |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 Handle<JSFunction> constant_function_; | 925 Handle<JSFunction> constant_function_; |
| 917 bool is_simple_api_call_; | 926 bool is_simple_api_call_; |
| 918 Handle<FunctionTemplateInfo> expected_receiver_type_; | 927 Handle<FunctionTemplateInfo> expected_receiver_type_; |
| 919 Handle<CallHandlerInfo> api_call_info_; | 928 Handle<CallHandlerInfo> api_call_info_; |
| 920 }; | 929 }; |
| 921 | 930 |
| 922 | 931 |
| 923 } } // namespace v8::internal | 932 } } // namespace v8::internal |
| 924 | 933 |
| 925 #endif // V8_STUB_CACHE_H_ | 934 #endif // V8_STUB_CACHE_H_ |
| OLD | NEW |