~ubuntu-branches/ubuntu/trusty/libv8/trusty

« back to all changes in this revision

Viewing changes to src/arm/simulator-arm.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-02-20 14:08:17 UTC
  • mfrom: (15.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20120220140817-bsvmeoa4sxsj5hbz
Tags: 3.7.12.22-3
Fix mipsel build, allow test debug-step-3 to fail (non-crucial)

Show diffs side-by-side

added added

removed removed

Lines of Context:
194
194
  // Pop an address from the JS stack.
195
195
  uintptr_t PopAddress();
196
196
 
 
197
  // Debugger input.
 
198
  void set_last_debugger_input(char* input);
 
199
  char* last_debugger_input() { return last_debugger_input_; }
 
200
 
197
201
  // ICache checking.
198
202
  static void FlushICache(v8::internal::HashMap* i_cache, void* start,
199
203
                          size_t size);
360
364
  bool pc_modified_;
361
365
  int icount_;
362
366
 
 
367
  // Debugger input.
 
368
  char* last_debugger_input_;
 
369
 
363
370
  // Icache simulation
364
371
  v8::internal::HashMap* i_cache_;
365
372