~james-page/ubuntu/precise/nodejs/test-timeout

« back to all changes in this revision

Viewing changes to deps/v8/src/mips/codegen-mips.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2011-06-30 07:03:44 UTC
  • mfrom: (7.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110630070344-5928xvhb3ddw5adb
Tags: 0.4.9-1ubuntu1
* Merge from Debian unstable (LP: #786428). Remaining changes:
  - debian/patches/2007_remove_internet_test.patch: Remove test which requires
    internet connection

Show diffs side-by-side

added added

removed removed

Lines of Context:
240
240
  void ProcessDeferred();
241
241
 
242
242
  // State
243
 
  bool has_cc() const  { return cc_reg_ != cc_always; }
 
243
  bool has_cc() const { return cc_reg_ != cc_always; }
244
244
  TypeofState typeof_state() const { return state_->typeof_state(); }
245
 
  JumpTarget* true_target() const  { return state_->true_target(); }
246
 
  JumpTarget* false_target() const  { return state_->false_target(); }
 
245
  JumpTarget* true_target() const { return state_->true_target(); }
 
246
  JumpTarget* false_target() const { return state_->false_target(); }
247
247
 
248
248
  // We don't track loop nesting level on mips yet.
249
249
  int loop_nesting() const { return 0; }
280
280
  MemOperand SlotOperand(Slot* slot, Register tmp);
281
281
 
282
282
  // Expressions
283
 
  MemOperand GlobalObject() const  {
 
283
  MemOperand GlobalObject() const {
284
284
    return ContextOperand(cp, Context::GLOBAL_INDEX);
285
285
  }
286
286
 
309
309
 
310
310
  static InlineRuntimeLUT* FindInlineRuntimeLUT(Handle<String> name);
311
311
  bool CheckForInlineRuntimeCall(CallRuntime* node);
312
 
  static bool PatchInlineRuntimeEntry(Handle<String> name,
313
 
                                      const InlineRuntimeLUT& new_entry,
314
 
                                      InlineRuntimeLUT* old_entry);
315
312
 
316
313
  static Handle<Code> ComputeLazyCompile(int argc);
317
314
  void ProcessDeclarations(ZoneList<Declaration*>* declarations);