OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 Result CallKeyedLoadIC(RelocInfo::Mode mode); | 336 Result CallKeyedLoadIC(RelocInfo::Mode mode); |
337 | 337 |
338 // Call store IC. Name, value, and receiver are found on top of the | 338 // Call store IC. Name, value, and receiver are found on top of the |
339 // frame. Receiver is not dropped. | 339 // frame. Receiver is not dropped. |
340 Result CallStoreIC(); | 340 Result CallStoreIC(); |
341 | 341 |
342 // Call keyed store IC. Value, key, and receiver are found on top | 342 // Call keyed store IC. Value, key, and receiver are found on top |
343 // of the frame. Key and receiver are not dropped. | 343 // of the frame. Key and receiver are not dropped. |
344 Result CallKeyedStoreIC(); | 344 Result CallKeyedStoreIC(); |
345 | 345 |
346 // Call call IC. Arguments, reciever, and function name are found | 346 // Call call IC. Arguments, receiver, and function name are found |
347 // on top of the frame. Function name slot is not dropped. The | 347 // on top of the frame. Function name slot is not dropped. The |
348 // argument count does not include the receiver. | 348 // argument count does not include the receiver. |
349 Result CallCallIC(RelocInfo::Mode mode, int arg_count, int loop_nesting); | 349 Result CallCallIC(RelocInfo::Mode mode, int arg_count, int loop_nesting); |
350 | 350 |
351 // Allocate and call JS function as constructor. Arguments, | 351 // Allocate and call JS function as constructor. Arguments, |
352 // receiver (global object), and function are found on top of the | 352 // receiver (global object), and function are found on top of the |
353 // frame. Function is not dropped. The argument count does not | 353 // frame. Function is not dropped. The argument count does not |
354 // include the receiver. | 354 // include the receiver. |
355 Result CallConstructor(int arg_count); | 355 Result CallConstructor(int arg_count); |
356 | 356 |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 | 551 |
552 // Classes that need raw access to the elements_ array. | 552 // Classes that need raw access to the elements_ array. |
553 friend class DeferredCode; | 553 friend class DeferredCode; |
554 friend class JumpTarget; | 554 friend class JumpTarget; |
555 }; | 555 }; |
556 | 556 |
557 | 557 |
558 } } // namespace v8::internal | 558 } } // namespace v8::internal |
559 | 559 |
560 #endif // V8_X64_VIRTUAL_FRAME_X64_H_ | 560 #endif // V8_X64_VIRTUAL_FRAME_X64_H_ |
OLD | NEW |