Bug 951105 - Rename MarkIonExitFrame to MarkJitExitFrame. r=jandem

This commit is contained in:
Nicolas B. Pierron 2013-12-17 08:43:22 -08:00
parent 591f402d35
commit 3071414b50
4 changed files with 5 additions and 5 deletions

View File

@ -393,7 +393,7 @@ IonCache::attachStub(MacroAssembler &masm, StubAttacher &attacher, Handle<IonCod
// Replace the STUB_ADDR constant by the address of the generated stub, such // Replace the STUB_ADDR constant by the address of the generated stub, such
// as it can be kept alive even if the cache is flushed (see // as it can be kept alive even if the cache is flushed (see
// MarkIonExitFrame). // MarkJitExitFrame).
attacher.patchStubCodePointer(masm, code); attacher.patchStubCodePointer(masm, code);
} }

View File

@ -922,7 +922,7 @@ JitActivationIterator::jitStackRange(uintptr_t *&min, uintptr_t *&end)
} }
static void static void
MarkIonExitFrame(JSTracer *trc, const IonFrameIterator &frame) MarkJitExitFrame(JSTracer *trc, const IonFrameIterator &frame)
{ {
// Ignore fake exit frames created by EnsureExitFrame. // Ignore fake exit frames created by EnsureExitFrame.
if (frame.isFakeExitFrame()) if (frame.isFakeExitFrame())
@ -1077,7 +1077,7 @@ MarkJitActivation(JSTracer *trc, const JitActivationIterator &activations)
for (IonFrameIterator frames(activations); !frames.done(); ++frames) { for (IonFrameIterator frames(activations); !frames.done(); ++frames) {
switch (frames.type()) { switch (frames.type()) {
case IonFrame_Exit: case IonFrame_Exit:
MarkIonExitFrame(trc, frames); MarkJitExitFrame(trc, frames);
break; break;
case IonFrame_BaselineJS: case IonFrame_BaselineJS:
frames.baselineFrame()->trace(trc); frames.baselineFrame()->trace(trc);

View File

@ -986,7 +986,7 @@ class LSafepoint : public TempObject
// For call instructions, the live regs are empty. Call instructions may // For call instructions, the live regs are empty. Call instructions may
// have register inputs or temporaries, which will *not* be in the live // have register inputs or temporaries, which will *not* be in the live
// registers: if passed to the call, the values passed will be marked via // registers: if passed to the call, the values passed will be marked via
// MarkIonExitFrame, and no registers can be live after the instruction // MarkJitExitFrame, and no registers can be live after the instruction
// except its outputs. // except its outputs.
RegisterSet liveRegs_; RegisterSet liveRegs_;

View File

@ -326,7 +326,7 @@ template <> struct TypeToPassInFloatReg<double> {
static const uint32_t result = 1; static const uint32_t result = 1;
}; };
// Convert argument types to root types used by the gc, see MarkIonExitFrame. // Convert argument types to root types used by the gc, see MarkJitExitFrame.
template <class T> struct TypeToRootType { template <class T> struct TypeToRootType {
static const uint32_t result = VMFunction::RootNone; static const uint32_t result = VMFunction::RootNone;
}; };