| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 | 326 |
| 327 #ifdef ENABLE_DEBUGGER_SUPPORT | 327 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 328 void DebugBreak(); | 328 void DebugBreak(); |
| 329 #endif | 329 #endif |
| 330 | 330 |
| 331 // Invoke builtin given the number of arguments it expects on (and | 331 // Invoke builtin given the number of arguments it expects on (and |
| 332 // removes from) the stack. | 332 // removes from) the stack. |
| 333 Result InvokeBuiltin(Builtins::JavaScript id, InvokeFlag flag, int arg_count); | 333 Result InvokeBuiltin(Builtins::JavaScript id, InvokeFlag flag, int arg_count); |
| 334 | 334 |
| 335 // Call load IC. Name and receiver are found on top of the frame. | 335 // Call load IC. Name and receiver are found on top of the frame. |
| 336 // Receiver is not dropped. | 336 // Both are dropped. |
| 337 Result CallLoadIC(RelocInfo::Mode mode); | 337 Result CallLoadIC(RelocInfo::Mode mode); |
| 338 | 338 |
| 339 // Call keyed load IC. Key and receiver are found on top of the | 339 // Call keyed load IC. Key and receiver are found on top of the |
| 340 // frame. They are not dropped. | 340 // frame. They are not dropped. |
| 341 Result CallKeyedLoadIC(RelocInfo::Mode mode); | 341 Result CallKeyedLoadIC(RelocInfo::Mode mode); |
| 342 | 342 |
| 343 // Call store IC. Name, value, and receiver are found on top of the | 343 // Call store IC. Name, value, and receiver are found on top of the |
| 344 // frame. Receiver is not dropped. | 344 // frame. Receiver is not dropped. |
| 345 Result CallStoreIC(); | 345 Result CallStoreIC(); |
| 346 | 346 |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 bool Equals(VirtualFrame* other); | 575 bool Equals(VirtualFrame* other); |
| 576 | 576 |
| 577 // Classes that need raw access to the elements_ array. | 577 // Classes that need raw access to the elements_ array. |
| 578 friend class DeferredCode; | 578 friend class DeferredCode; |
| 579 friend class JumpTarget; | 579 friend class JumpTarget; |
| 580 }; | 580 }; |
| 581 | 581 |
| 582 } } // namespace v8::internal | 582 } } // namespace v8::internal |
| 583 | 583 |
| 584 #endif // V8_IA32_VIRTUAL_FRAME_IA32_H_ | 584 #endif // V8_IA32_VIRTUAL_FRAME_IA32_H_ |
| OLD | NEW |