diff options
Diffstat (limited to 'src/3rdparty/webkit/JavaScriptCore/bytecode/StructureStubInfo.h')
-rw-r--r-- | src/3rdparty/webkit/JavaScriptCore/bytecode/StructureStubInfo.h | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/bytecode/StructureStubInfo.h b/src/3rdparty/webkit/JavaScriptCore/bytecode/StructureStubInfo.h new file mode 100644 index 0000000..a9e0678 --- /dev/null +++ b/src/3rdparty/webkit/JavaScriptCore/bytecode/StructureStubInfo.h @@ -0,0 +1,156 @@ +/* + * Copyright (C) 2008 Apple Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY + * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef StructureStubInfo_h +#define StructureStubInfo_h + +#include "Instruction.h" +#include "Opcode.h" +#include "Structure.h" + +namespace JSC { + +#if ENABLE(JIT) + struct StructureStubInfo { + StructureStubInfo(OpcodeID opcodeID) + : opcodeID(opcodeID) + , stubRoutine(0) + , callReturnLocation(0) + , hotPathBegin(0) + { + } + + void initGetByIdSelf(Structure* baseObjectStructure) + { + opcodeID = op_get_by_id_self; + + u.getByIdSelf.baseObjectStructure = baseObjectStructure; + baseObjectStructure->ref(); + } + + void initGetByIdProto(Structure* baseObjectStructure, Structure* prototypeStructure) + { + opcodeID = op_get_by_id_proto; + + u.getByIdProto.baseObjectStructure = baseObjectStructure; + baseObjectStructure->ref(); + + u.getByIdProto.prototypeStructure = prototypeStructure; + prototypeStructure->ref(); + } + + void initGetByIdChain(Structure* baseObjectStructure, StructureChain* chain) + { + opcodeID = op_get_by_id_chain; + + u.getByIdChain.baseObjectStructure = baseObjectStructure; + baseObjectStructure->ref(); + + u.getByIdChain.chain = chain; + chain->ref(); + } + + void initGetByIdSelfList(PolymorphicAccessStructureList* structureList, int listSize) + { + opcodeID = op_get_by_id_self_list; + + u.getByIdProtoList.structureList = structureList; + u.getByIdProtoList.listSize = listSize; + } + + void initGetByIdProtoList(PolymorphicAccessStructureList* structureList, int listSize) + { + opcodeID = op_get_by_id_proto_list; + + u.getByIdProtoList.structureList = structureList; + u.getByIdProtoList.listSize = listSize; + } + + // PutById* + + void initPutByIdTransition(Structure* previousStructure, Structure* structure, StructureChain* chain) + { + opcodeID = op_put_by_id_transition; + + u.putByIdTransition.previousStructure = previousStructure; + previousStructure->ref(); + + u.putByIdTransition.structure = structure; + structure->ref(); + + u.putByIdTransition.chain = chain; + chain->ref(); + } + + void initPutByIdReplace(Structure* baseObjectStructure) + { + opcodeID = op_put_by_id_replace; + + u.putByIdReplace.baseObjectStructure = baseObjectStructure; + baseObjectStructure->ref(); + } + + void deref(); + + OpcodeID opcodeID; + union { + struct { + Structure* baseObjectStructure; + } getByIdSelf; + struct { + Structure* baseObjectStructure; + Structure* prototypeStructure; + } getByIdProto; + struct { + Structure* baseObjectStructure; + StructureChain* chain; + } getByIdChain; + struct { + PolymorphicAccessStructureList* structureList; + int listSize; + } getByIdSelfList; + struct { + PolymorphicAccessStructureList* structureList; + int listSize; + } getByIdProtoList; + struct { + Structure* previousStructure; + Structure* structure; + StructureChain* chain; + } putByIdTransition; + struct { + Structure* baseObjectStructure; + } putByIdReplace; + } u; + + void* stubRoutine; + void* callReturnLocation; + void* hotPathBegin; + }; +#endif + +} // namespace JSC + +#endif // StructureStubInfo_h |