| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 #ifdef ENABLE_DEBUGGER_SUPPORT | 301 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 302 void DebugBreak(); | 302 void DebugBreak(); |
| 303 #endif | 303 #endif |
| 304 | 304 |
| 305 // Invoke builtin given the number of arguments it expects on (and | 305 // Invoke builtin given the number of arguments it expects on (and |
| 306 // removes from) the stack. | 306 // removes from) the stack. |
| 307 void InvokeBuiltin(Builtins::JavaScript id, | 307 void InvokeBuiltin(Builtins::JavaScript id, |
| 308 InvokeJSFlags flag, | 308 InvokeJSFlags flag, |
| 309 int arg_count); | 309 int arg_count); |
| 310 | 310 |
| 311 // Call load IC. Receiver is on the stack and the property name is in r2. | 311 // Call load IC. Receiver is on the stack. Result is returned in r0. |
| 312 // Result is returned in r0. | 312 void CallLoadIC(Handle<String> name, RelocInfo::Mode mode); |
| 313 void CallLoadIC(RelocInfo::Mode mode); | |
| 314 | 313 |
| 315 // Call store IC. If the load is contextual, value is found on top of the | 314 // Call store IC. If the load is contextual, value is found on top of the |
| 316 // frame. If not, value and receiver are on the frame. Both are consumed. | 315 // frame. If not, value and receiver are on the frame. Both are consumed. |
| 317 // Result is returned in r0. | 316 // Result is returned in r0. |
| 318 void CallStoreIC(Handle<String> name, bool is_contextual); | 317 void CallStoreIC(Handle<String> name, bool is_contextual); |
| 319 | 318 |
| 320 // Call keyed load IC. Key and receiver are on the stack. Result is returned | 319 // Call keyed load IC. Key and receiver are on the stack. Result is returned |
| 321 // in r0. | 320 // in r0. |
| 322 void CallKeyedLoadIC(); | 321 void CallKeyedLoadIC(); |
| 323 | 322 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 inline bool Equals(VirtualFrame* other); | 494 inline bool Equals(VirtualFrame* other); |
| 496 | 495 |
| 497 friend class JumpTarget; | 496 friend class JumpTarget; |
| 498 friend class DeferredCode; | 497 friend class DeferredCode; |
| 499 }; | 498 }; |
| 500 | 499 |
| 501 | 500 |
| 502 } } // namespace v8::internal | 501 } } // namespace v8::internal |
| 503 | 502 |
| 504 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ | 503 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ |
| OLD | NEW |