Mozilla/mozilla/js2/src/js2op_access.cpp
rogerl%netscape.com cb77c6e17b Fixed bypasss of error checking for initialization. Added AlienInstance
methods that were MIA.


git-svn-id: svn://10.0.0.236/trunk@137201 18797224-902f-48f8-a5cc-f745e15eee43
2003-01-31 17:42:49 +00:00

288 lines
10 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is the JavaScript 2 Prototype.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the
* terms of the GNU Public License (the "GPL"), in which case the
* provisions of the GPL are applicable instead of those above.
* If you wish to allow use of your version of this file only
* under the terms of the GPL and not to allow others to use your
* version of this file under the NPL, indicate your decision by
* deleting the provisions above and replace them with the notice
* and other provisions required by the GPL. If you do not delete
* the provisions above, a recipient may use your version of this
* file under either the NPL or the GPL.
*/
// Read a multiname property from a base object, push the value onto the stack
case eDotRead:
{
LookupKind lookup(false, JS2VAL_NULL);
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
b = pop();
if (!meta->readProperty(b, mn, &lookup, RunPhase, &a))
meta->reportError(Exception::propertyAccessError, "No property named {0}", errorPos(), mn->name);
push(a);
}
break;
case eDotDelete:
{
LookupKind lookup(false, JS2VAL_NULL);
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
b = pop();
bool result;
if (!meta->deleteProperty(b, mn, &lookup, RunPhase, &result))
push(JS2VAL_FALSE);
else
push(BOOLEAN_TO_JS2VAL(result));
}
break;
// Write the top value to a multiname property in a base object, leave
// the value on the stack top
case eDotWrite:
{
a = pop();
LookupKind lookup(false, JS2VAL_NULL);
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
b = pop();
meta->writeProperty(b, mn, &lookup, true, a, RunPhase);
push(a);
}
break;
// Read the multiname property, but leave the base and the value on the stack
case eDotRef:
{
LookupKind lookup(false, JS2VAL_NULL);
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
b = top();
if (!meta->readProperty(b, mn, &lookup, RunPhase, &a))
meta->reportError(Exception::propertyAccessError, "No property named {0}", errorPos(), mn->name);
push(a);
}
break;
// Read the multiname from the current environment, push it's value on the stack
case eLexicalRead:
{
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
push(meta->env->lexicalRead(meta, mn, phase));
}
break;
case eLexicalDelete:
{
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
push(BOOLEAN_TO_JS2VAL(meta->env->lexicalDelete(meta, mn, phase)));
}
break;
// Write the top value to the multiname in the environment, leave
// the value on the stack top.
case eLexicalWrite:
{
a = top();
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
meta->env->lexicalWrite(meta, mn, a, true, phase);
}
break;
// Write the top value to the multiname in the environment, leave
// the value on the stack top.
case eLexicalInit:
{
a = pop();
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
meta->env->lexicalInit(meta, mn, a, true, phase);
}
break;
// Construct a reference pair consisting of a NULL base and the read value
case eLexicalRef:
{
Multiname *mn = bCon->mMultinameList[BytecodeContainer::getShort(pc)];
pc += sizeof(short);
a = meta->env->lexicalRead(meta, mn, phase);
push(JS2VAL_NULL);
push(a);
}
break;
// Read an index property from a base object, push the value onto the stack
case eBracketRead:
{
LookupKind lookup(false, JS2VAL_NULL);
indexVal = pop();
b = pop();
const String *indexStr = meta->toString(indexVal);
Multiname mn(&meta->world.identifiers[*indexStr], meta->publicNamespace);
if (!meta->readProperty(b, &mn, &lookup, RunPhase, &a))
meta->reportError(Exception::propertyAccessError, "No property named {0}", errorPos(), mn.name);
push(a);
indexVal = JS2VAL_VOID;
}
break;
case eBracketDelete:
{
LookupKind lookup(false, JS2VAL_NULL);
indexVal = pop();
b = pop();
const String *indexStr = meta->toString(indexVal);
Multiname mn(&meta->world.identifiers[*indexStr], meta->publicNamespace);
bool result;
if (!meta->deleteProperty(b, &mn, &lookup, RunPhase, &result))
push(JS2VAL_FALSE);
else
push(BOOLEAN_TO_JS2VAL(result));
indexVal = JS2VAL_VOID;
}
break;
// Write the top value to an index property in a base object, leave
// the value on the stack top
case eBracketWrite:
{
LookupKind lookup(false, JS2VAL_NULL);
a = pop();
indexVal = pop();
b = pop();
const String *indexStr = meta->toString(indexVal);
Multiname mn(&meta->world.identifiers[*indexStr], meta->publicNamespace);
meta->writeProperty(b, &mn, &lookup, true, a, RunPhase);
push(a);
indexVal = JS2VAL_VOID;
}
break;
// Leave the base object on the stack and push the property value
case eBracketRef:
{
LookupKind lookup(false, JS2VAL_NULL);
indexVal = pop();
b = top();
const String *indexStr = meta->toString(indexVal);
Multiname mn(&meta->world.identifiers[*indexStr], meta->publicNamespace);
if (!meta->readProperty(b, &mn, &lookup, RunPhase, &a))
meta->reportError(Exception::propertyAccessError, "No property named {0}", errorPos(), mn.name);
push(a);
indexVal = JS2VAL_VOID;
}
break;
// Leave the base object and index value, push the value
case eBracketReadForRef:
{
LookupKind lookup(false, JS2VAL_NULL);
indexVal = pop();
b = top();
const String *indexStr = meta->toString(indexVal);
push(STRING_TO_JS2VAL(indexStr));
Multiname mn(&meta->world.identifiers[*indexStr], meta->publicNamespace);
if (!meta->readProperty(b, &mn, &lookup, RunPhase, &a))
meta->reportError(Exception::propertyAccessError, "No property named {0}", errorPos(), mn.name);
push(a);
indexVal = JS2VAL_VOID;
}
break;
// Beneath the value is a reference pair (base and index), write to that location but leave just the value
case eBracketWriteRef:
{
LookupKind lookup(false, JS2VAL_NULL);
a = pop();
indexVal = pop();
ASSERT(JS2VAL_IS_STRING(indexVal));
b = pop();
Multiname mn(&meta->world.identifiers[*JS2VAL_TO_STRING(indexVal)], meta->publicNamespace);
meta->writeProperty(b, &mn, &lookup, true, a, RunPhase);
push(a);
indexVal = JS2VAL_VOID;
}
break;
case eFrameSlotWrite:
{
uint16 slotIndex = BytecodeContainer::getShort(pc);
pc += sizeof(short);
Frame *f = meta->env->getTopFrame();
a = pop();
(*f->temps)[slotIndex] = a;
}
break;
case eFrameSlotRead:
{
uint16 slotIndex = BytecodeContainer::getShort(pc);
pc += sizeof(short);
Frame *f = meta->env->getTopFrame();
push((*f->temps)[slotIndex]);
}
break;
case eSlotWrite:
{
a = pop();
uint16 slotIndex = BytecodeContainer::getShort(pc);
pc += sizeof(short);
b = pop();
ASSERT(JS2VAL_IS_OBJECT(b));
JS2Object *obj = JS2VAL_TO_OBJECT(b);
ASSERT(obj->kind == SimpleInstanceKind);
checked_cast<SimpleInstance *>(obj)->slots[slotIndex].value = a;
push(a);
}
break;
case eSlotRead:
{
uint16 slotIndex = BytecodeContainer::getShort(pc);
pc += sizeof(short);
b = pop();
ASSERT(JS2VAL_IS_OBJECT(b));
JS2Object *obj = JS2VAL_TO_OBJECT(b);
ASSERT(obj->kind == SimpleInstanceKind);
push(checked_cast<SimpleInstance *>(obj)->slots[slotIndex].value);
}
break;
case eSlotRef:
{
uint16 slotIndex = BytecodeContainer::getShort(pc);
pc += sizeof(short);
b = top();
ASSERT(JS2VAL_IS_OBJECT(b));
JS2Object *obj = JS2VAL_TO_OBJECT(b);
ASSERT(obj->kind == SimpleInstanceKind);
push(checked_cast<SimpleInstance *>(obj)->slots[slotIndex].value);
}
break;