| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 Result CallKeyedLoadIC(RelocInfo::Mode mode); | 340 Result CallKeyedLoadIC(RelocInfo::Mode mode); |
| 341 | 341 |
| 342 // Call store IC. Name, value, and receiver are found on top of the | 342 // Call store IC. Name, value, and receiver are found on top of the |
| 343 // frame. Receiver is not dropped. | 343 // frame. Receiver is not dropped. |
| 344 Result CallStoreIC(); | 344 Result CallStoreIC(); |
| 345 | 345 |
| 346 // Call keyed store IC. Value, key, and receiver are found on top | 346 // Call keyed store IC. Value, key, and receiver are found on top |
| 347 // of the frame. Key and receiver are not dropped. | 347 // of the frame. Key and receiver are not dropped. |
| 348 Result CallKeyedStoreIC(); | 348 Result CallKeyedStoreIC(); |
| 349 | 349 |
| 350 // Call call IC. Arguments, receiver, and function name are found | 350 // Call call IC. Function name, arguments, and receiver are found on top |
| 351 // on top of the frame. Function name slot is not dropped. The | 351 // of the frame and dropped by the call. |
| 352 // argument count does not include the receiver. | 352 // The argument count does not include the receiver. |
| 353 Result CallCallIC(RelocInfo::Mode mode, int arg_count, int loop_nesting); | 353 Result CallCallIC(RelocInfo::Mode mode, int arg_count, int loop_nesting); |
| 354 | 354 |
| 355 // Allocate and call JS function as constructor. Arguments, | 355 // Allocate and call JS function as constructor. Arguments, |
| 356 // receiver (global object), and function are found on top of the | 356 // receiver (global object), and function are found on top of the |
| 357 // frame. Function is not dropped. The argument count does not | 357 // frame. Function is not dropped. The argument count does not |
| 358 // include the receiver. | 358 // include the receiver. |
| 359 Result CallConstructor(int arg_count); | 359 Result CallConstructor(int arg_count); |
| 360 | 360 |
| 361 // Drop a number of elements from the top of the expression stack. May | 361 // Drop a number of elements from the top of the expression stack. May |
| 362 // emit code to affect the physical frame. Does not clobber any registers | 362 // emit code to affect the physical frame. Does not clobber any registers |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 | 555 |
| 556 // Classes that need raw access to the elements_ array. | 556 // Classes that need raw access to the elements_ array. |
| 557 friend class DeferredCode; | 557 friend class DeferredCode; |
| 558 friend class JumpTarget; | 558 friend class JumpTarget; |
| 559 }; | 559 }; |
| 560 | 560 |
| 561 | 561 |
| 562 } } // namespace v8::internal | 562 } } // namespace v8::internal |
| 563 | 563 |
| 564 #endif // V8_X64_VIRTUAL_FRAME_X64_H_ | 564 #endif // V8_X64_VIRTUAL_FRAME_X64_H_ |
| OLD | NEW |