Ignore:
Timestamp:
Jul 24, 2013, 8:59:49 PM (12 years ago)
Author:
[email protected]
Message:

fourthTier: DFG shouldn't allocate in the GC heap
https://bugs.webkit.org/show_bug.cgi?id=115598

Reviewed by Geoffrey Garen.

I believe that we've now fixed this, and this patch just adds the relevant assertion.

  • runtime/JSCellInlines.h:

(JSC::JSCell::JSCell):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSCellInlines.h

    r149236 r153148  
    11/*
    2  * Copyright (C) 2012 Apple Inc. All rights reserved.
     2 * Copyright (C) 2012, 2013 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    3333#include "JSString.h"
    3434#include "Structure.h"
     35#include <wtf/CompilationThread.h>
    3536
    3637namespace JSC {
     
    3839inline JSCell::JSCell(CreatingEarlyCellTag)
    3940{
     41    ASSERT(!isCompilationThread());
    4042}
    4143
     
    4345    : m_structure(vm, this, structure)
    4446{
     47    ASSERT(!isCompilationThread());
    4548}
    4649
Note: See TracChangeset for help on using the changeset viewer.