2 * Copyright (C) 2010 University of Szeged
3 * Copyright (C) 2010 Renata Hodovan (hodovan@inf.u-szeged.hu)
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF SZEGED ``AS IS'' AND ANY
16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL UNIVERSITY OF SZEGED OR
19 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "RegExpCache.h"
31 #include "RegExpObject.h"
35 RegExp
* RegExpCache::lookupOrCreate(const UString
& patternString
, RegExpFlags flags
)
37 RegExpKey
key(flags
, patternString
);
38 RegExpCacheMap::iterator result
= m_weakCache
.find(key
);
39 if (result
!= m_weakCache
.end())
40 return result
->second
.get();
41 RegExp
* regExp
= new (m_globalData
) RegExp(m_globalData
, patternString
, flags
);
42 #if ENABLE(REGEXP_TRACING)
43 m_globalData
->addRegExpToTrace(regExp
);
45 // We need to do a second lookup to add the RegExp as
46 // allocating it may have caused a gc cycle, which in
47 // turn may have removed items from the cache.
48 m_weakCache
.add(key
, Weak
<RegExp
>(*m_globalData
, regExp
, this));
52 RegExpCache::RegExpCache(JSGlobalData
* globalData
)
53 : m_nextEntryInStrongCache(0)
54 , m_globalData(globalData
)
58 void RegExpCache::finalize(Handle
<Unknown
> handle
, void*)
60 RegExp
* regExp
= static_cast<RegExp
*>(handle
.get().asCell());
61 m_weakCache
.remove(regExp
->key());
62 regExp
->invalidateCode();
65 void RegExpCache::addToStrongCache(RegExp
* regExp
)
67 UString pattern
= regExp
->pattern();
68 if (pattern
.length() > maxStrongCacheablePatternLength
)
70 m_strongCache
[m_nextEntryInStrongCache
].set(*m_globalData
, regExp
);
71 m_nextEntryInStrongCache
++;
72 if (m_nextEntryInStrongCache
== maxStrongCacheableEntries
)
73 m_nextEntryInStrongCache
= 0;
76 void RegExpCache::invalidateCode()
78 for (int i
= 0; i
< maxStrongCacheableEntries
; i
++)
79 m_strongCache
[i
].clear();
80 m_nextEntryInStrongCache
= 0;
81 RegExpCacheMap::iterator end
= m_weakCache
.end();
82 for (RegExpCacheMap::iterator ptr
= m_weakCache
.begin(); ptr
!= end
; ++ptr
)
83 ptr
->second
->invalidateCode();