~ubuntu-branches/ubuntu/saucy/libv8/saucy

« back to all changes in this revision

Viewing changes to src/store-buffer.h

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-04-07 16:26:13 UTC
  • mfrom: (15.1.27 sid)
  • Revision ID: package-import@ubuntu.com-20120407162613-dqo1m6w9r3fh8tst
Tags: 3.8.9.16-3
* mipsel build fixes :
  + v8_use_mips_abi_hardfloat=false, this lowers EABI requirements.
  + v8_can_use_fpu_instructions=false, detect if FPU is present.
  + set -Wno-unused-but-set-variable only on mipsel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 
55
55
  inline Address TopAddress();
56
56
 
57
 
  void Setup();
 
57
  void SetUp();
58
58
  void TearDown();
59
59
 
60
60
  // This is used by the mutator to enter addresses into the store buffer.
109
109
  // been promoted.  Rebuilds the store buffer completely if it overflowed.
110
110
  void SortUniq();
111
111
 
112
 
  void HandleFullness();
 
112
  void EnsureSpace(intptr_t space_needed);
113
113
  void Verify();
114
114
 
115
115
  bool PrepareForIteration();
134
134
  Address* old_start_;
135
135
  Address* old_limit_;
136
136
  Address* old_top_;
 
137
  Address* old_reserved_limit_;
 
138
  VirtualMemory* old_virtual_memory_;
137
139
 
138
140
  bool old_buffer_is_sorted_;
139
141
  bool old_buffer_is_filtered_;