| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 HIsNull* compare = HIsNull::cast(v); | 1102 HIsNull* compare = HIsNull::cast(v); |
| 1103 ASSERT(compare->value()->representation().IsTagged()); | 1103 ASSERT(compare->value()->representation().IsTagged()); |
| 1104 // We only need a temp register for non-strict compare. | 1104 // We only need a temp register for non-strict compare. |
| 1105 LOperand* temp = compare->is_strict() ? NULL : TempRegister(); | 1105 LOperand* temp = compare->is_strict() ? NULL : TempRegister(); |
| 1106 return new LIsNullAndBranch(UseRegisterAtStart(compare->value()), temp); | 1106 return new LIsNullAndBranch(UseRegisterAtStart(compare->value()), temp); |
| 1107 } else if (v->IsIsObject()) { | 1107 } else if (v->IsIsObject()) { |
| 1108 HIsObject* compare = HIsObject::cast(v); | 1108 HIsObject* compare = HIsObject::cast(v); |
| 1109 ASSERT(compare->value()->representation().IsTagged()); | 1109 ASSERT(compare->value()->representation().IsTagged()); |
| 1110 LOperand* temp1 = TempRegister(); | 1110 LOperand* temp1 = TempRegister(); |
| 1111 LOperand* temp2 = TempRegister(); | 1111 LOperand* temp2 = TempRegister(); |
| 1112 return new LIsObjectAndBranch(UseRegisterAtStart(compare->value()), | 1112 return new LIsObjectAndBranch(UseRegister(compare->value()), |
| 1113 temp1, | 1113 temp1, |
| 1114 temp2); | 1114 temp2); |
| 1115 } else if (v->IsCompareJSObjectEq()) { | 1115 } else if (v->IsCompareJSObjectEq()) { |
| 1116 HCompareJSObjectEq* compare = HCompareJSObjectEq::cast(v); | 1116 HCompareJSObjectEq* compare = HCompareJSObjectEq::cast(v); |
| 1117 return new LCmpJSObjectEqAndBranch(UseRegisterAtStart(compare->left()), | 1117 return new LCmpJSObjectEqAndBranch(UseRegisterAtStart(compare->left()), |
| 1118 UseRegisterAtStart(compare->right())); | 1118 UseRegisterAtStart(compare->right())); |
| 1119 } else if (v->IsCompareSymbolEq()) { | 1119 } else if (v->IsCompareSymbolEq()) { |
| 1120 HCompareSymbolEq* compare = HCompareSymbolEq::cast(v); | 1120 HCompareSymbolEq* compare = HCompareSymbolEq::cast(v); |
| 1121 return new LCmpSymbolEqAndBranch(UseRegisterAtStart(compare->left()), | 1121 return new LCmpSymbolEqAndBranch(UseRegisterAtStart(compare->left()), |
| 1122 UseRegisterAtStart(compare->right())); | 1122 UseRegisterAtStart(compare->right())); |
| (...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2256 LOperand* key = UseOrConstantAtStart(instr->key()); | 2256 LOperand* key = UseOrConstantAtStart(instr->key()); |
| 2257 LOperand* object = UseOrConstantAtStart(instr->object()); | 2257 LOperand* object = UseOrConstantAtStart(instr->object()); |
| 2258 LIn* result = new LIn(key, object); | 2258 LIn* result = new LIn(key, object); |
| 2259 return MarkAsCall(DefineFixed(result, eax), instr); | 2259 return MarkAsCall(DefineFixed(result, eax), instr); |
| 2260 } | 2260 } |
| 2261 | 2261 |
| 2262 | 2262 |
| 2263 } } // namespace v8::internal | 2263 } } // namespace v8::internal |
| 2264 | 2264 |
| 2265 #endif // V8_TARGET_ARCH_IA32 | 2265 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |