Lines Matching defs:object
408 object()->PrintTo(stream);
417 object()->PrintTo(stream);
426 object()->PrintTo(stream);
435 object()->PrintTo(stream);
506 Handle<Object> LChunk::LookupLiteral(LConstantOperand* operand) const {
1604 LOperand* object = UseRegister(instr->value());
1605 LValueOf* result = new LValueOf(object, TempRegister());
1812 LOperand* obj = UseRegisterAtStart(instr->object());
1821 LOperand* obj = UseFixed(instr->object(), eax);
1825 LOperand* obj = UseRegisterAtStart(instr->object());
1834 LOperand* object = UseFixed(instr->object(), eax);
1835 LLoadNamedGeneric* result = new LLoadNamedGeneric(context, object);
1865 LOperand* obj = UseRegisterAtStart(instr->object());
1895 LOperand* object = UseFixed(instr->object(), edx);
1898 LLoadKeyedGeneric* result = new LLoadKeyedGeneric(context, object, key);
1907 ASSERT(instr->object()->representation().IsTagged());
1910 LOperand* obj = UseTempRegister(instr->object());
1960 LOperand* object = UseFixed(instr->object(), edx);
1964 ASSERT(instr->object()->representation().IsTagged());
1969 new LStoreKeyedGeneric(context, object, key, value);
1978 ? UseTempRegister(instr->object())
1979 : UseRegisterAtStart(instr->object());
1986 // have a store into the properties array (not in-object-property).
1997 LOperand* object = UseFixed(instr->object(), edx);
2000 LStoreNamedGeneric* result = new LStoreNamedGeneric(context, object, value);
2049 new LDeleteProperty(Use(instr->object()), UseOrConstant(instr->key()));
2086 // There are no real uses of the arguments object.
2088 // stack arguments, and any real arguments object use causes a bailout.
2104 LOperand* object = UseFixed(instr->value(), eax);
2105 LToFastProperties* result = new LToFastProperties(object);