StructureStubInfo.cpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Copyright (C) 2008 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
  14. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  15. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
  17. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  20. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  21. * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  23. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #include "config.h"
  26. #include "StructureStubInfo.h"
  27. #include "JSObject.h"
  28. #include "PolymorphicPutByIdList.h"
  29. namespace JSC {
  30. #if ENABLE(JIT)
  31. void StructureStubInfo::deref()
  32. {
  33. switch (accessType) {
  34. case access_get_by_id_self_list: {
  35. PolymorphicAccessStructureList* polymorphicStructures = u.getByIdSelfList.structureList;
  36. delete polymorphicStructures;
  37. return;
  38. }
  39. case access_get_by_id_proto_list: {
  40. PolymorphicAccessStructureList* polymorphicStructures = u.getByIdProtoList.structureList;
  41. delete polymorphicStructures;
  42. return;
  43. }
  44. case access_put_by_id_list:
  45. delete u.putByIdList.list;
  46. return;
  47. case access_get_by_id_self:
  48. case access_get_by_id_proto:
  49. case access_get_by_id_chain:
  50. case access_put_by_id_transition_normal:
  51. case access_put_by_id_transition_direct:
  52. case access_put_by_id_replace:
  53. case access_unset:
  54. case access_get_by_id_generic:
  55. case access_put_by_id_generic:
  56. case access_get_array_length:
  57. case access_get_string_length:
  58. // These instructions don't have to release any allocated memory
  59. return;
  60. default:
  61. RELEASE_ASSERT_NOT_REACHED();
  62. }
  63. }
  64. #if !(ENABLE(DETACHED_JIT) && BUILDING_DETACHED_JIT)
  65. bool StructureStubInfo::visitWeakReferences()
  66. {
  67. switch (accessType) {
  68. case access_get_by_id_self:
  69. if (!Heap::isMarked(u.getByIdSelf.baseObjectStructure.get()))
  70. return false;
  71. break;
  72. case access_get_by_id_proto:
  73. if (!Heap::isMarked(u.getByIdProto.baseObjectStructure.get())
  74. || !Heap::isMarked(u.getByIdProto.prototypeStructure.get()))
  75. return false;
  76. break;
  77. case access_get_by_id_chain:
  78. if (!Heap::isMarked(u.getByIdChain.baseObjectStructure.get())
  79. || !Heap::isMarked(u.getByIdChain.chain.get()))
  80. return false;
  81. break;
  82. case access_get_by_id_self_list: {
  83. PolymorphicAccessStructureList* polymorphicStructures = u.getByIdSelfList.structureList;
  84. if (!polymorphicStructures->visitWeak(u.getByIdSelfList.listSize))
  85. return false;
  86. break;
  87. }
  88. case access_get_by_id_proto_list: {
  89. PolymorphicAccessStructureList* polymorphicStructures = u.getByIdProtoList.structureList;
  90. if (!polymorphicStructures->visitWeak(u.getByIdProtoList.listSize))
  91. return false;
  92. break;
  93. }
  94. case access_put_by_id_transition_normal:
  95. case access_put_by_id_transition_direct:
  96. if (!Heap::isMarked(u.putByIdTransition.previousStructure.get())
  97. || !Heap::isMarked(u.putByIdTransition.structure.get())
  98. || !Heap::isMarked(u.putByIdTransition.chain.get()))
  99. return false;
  100. break;
  101. case access_put_by_id_replace:
  102. if (!Heap::isMarked(u.putByIdReplace.baseObjectStructure.get()))
  103. return false;
  104. break;
  105. case access_put_by_id_list:
  106. if (!u.putByIdList.list->visitWeak())
  107. return false;
  108. break;
  109. default:
  110. // The rest of the instructions don't require references, so there is no need to
  111. // do anything.
  112. break;
  113. }
  114. return true;
  115. }
  116. #endif
  117. #endif // #if !(ENABLE(DETACHED_JIT) && BUILDING_DETACHED_JIT)
  118. } // namespace JSC