Use custom AssemblyAnnotationWriter to improve vasm/llvm printing
[hiphop-php.git] / hphp / runtime / vm / named-entity-inl.h
blob1837e4d3941fd9be2baea374f6be07b904d5fdd2
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-2014 Facebook, Inc. (http://www.facebook.com) |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
17 #ifndef incl_HPHP_VM_NAMED_ENTITY_INL_H_
18 #error "named-entity-inl.h should only be included by named-entity.h"
19 #endif
21 namespace HPHP {
22 ///////////////////////////////////////////////////////////////////////////////
24 inline NamedEntity::NamedEntity(NamedEntity&& ne)
25 : m_cachedClass(ne.m_cachedClass)
26 , m_cachedFunc(ne.m_cachedFunc)
27 , m_cachedTypeAlias(ne.m_cachedTypeAlias)
29 m_clsList.store(ne.m_clsList.load(std::memory_order_acquire),
30 std::memory_order_release);
33 inline RDS::Handle NamedEntity::getFuncHandle() const {
34 m_cachedFunc.bind();
35 return m_cachedFunc.handle();
38 inline RDS::Handle NamedEntity::getClassHandle() const {
39 m_cachedClass.bind();
40 return m_cachedClass.handle();
43 inline Class* NamedEntity::clsList() const {
44 return m_clsList.load(std::memory_order_acquire);
47 ///////////////////////////////////////////////////////////////////////////////