OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 Object* LoadCallbackProperty(Arguments args); | 305 Object* LoadCallbackProperty(Arguments args); |
306 Object* StoreCallbackProperty(Arguments args); | 306 Object* StoreCallbackProperty(Arguments args); |
307 | 307 |
308 | 308 |
309 // Support functions for IC stubs for interceptors. | 309 // Support functions for IC stubs for interceptors. |
310 Object* LoadPropertyWithInterceptorOnly(Arguments args); | 310 Object* LoadPropertyWithInterceptorOnly(Arguments args); |
311 Object* LoadPropertyWithInterceptorForLoad(Arguments args); | 311 Object* LoadPropertyWithInterceptorForLoad(Arguments args); |
312 Object* LoadPropertyWithInterceptorForCall(Arguments args); | 312 Object* LoadPropertyWithInterceptorForCall(Arguments args); |
313 Object* StoreInterceptorProperty(Arguments args); | 313 Object* StoreInterceptorProperty(Arguments args); |
314 Object* CallInterceptorProperty(Arguments args); | 314 Object* CallInterceptorProperty(Arguments args); |
| 315 Object* KeyedLoadPropertyWithInterceptor(Arguments args); |
315 | 316 |
316 | 317 |
317 // Support function for computing call IC miss stubs. | 318 // Support function for computing call IC miss stubs. |
318 Handle<Code> ComputeCallMiss(int argc); | 319 Handle<Code> ComputeCallMiss(int argc); |
319 | 320 |
320 | 321 |
321 // The stub compiler compiles stubs for the stub cache. | 322 // The stub compiler compiles stubs for the stub cache. |
322 class StubCompiler BASE_EMBEDDED { | 323 class StubCompiler BASE_EMBEDDED { |
323 public: | 324 public: |
324 enum CheckType { | 325 enum CheckType { |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 Object* CompileConstructStub(SharedFunctionInfo* shared); | 587 Object* CompileConstructStub(SharedFunctionInfo* shared); |
587 | 588 |
588 private: | 589 private: |
589 Object* GetCode(); | 590 Object* GetCode(); |
590 }; | 591 }; |
591 | 592 |
592 | 593 |
593 } } // namespace v8::internal | 594 } } // namespace v8::internal |
594 | 595 |
595 #endif // V8_STUB_CACHE_H_ | 596 #endif // V8_STUB_CACHE_H_ |
OLD | NEW |