OLD | NEW |
---|---|
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 5342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5353 ASSERT(var->is_global()); | 5353 ASSERT(var->is_global()); |
5354 ASSERT(!in_safe_int32_mode()); | 5354 ASSERT(!in_safe_int32_mode()); |
5355 Reference ref(this, node); | 5355 Reference ref(this, node); |
5356 ref.GetValue(); | 5356 ref.GetValue(); |
5357 } | 5357 } |
5358 } | 5358 } |
5359 | 5359 |
5360 | 5360 |
5361 void CodeGenerator::VisitLiteral(Literal* node) { | 5361 void CodeGenerator::VisitLiteral(Literal* node) { |
5362 Comment cmnt(masm_, "[ Literal"); | 5362 Comment cmnt(masm_, "[ Literal"); |
5363 if (in_safe_int32_mode()) { | 5363 if (frame_->ConstantPoolOverflowed()) { |
5364 frame_->PushUntaggedElement(node->handle()); | 5364 Result temp = allocator_->Allocate(); |
5365 ASSERT(temp.is_valid()); | |
5366 if (node->handle()->IsSmi()) { | |
5367 __ Set(temp.reg(), Immediate(Smi::cast(*node->handle()))); | |
5368 } else { | |
5369 __ mov(temp.reg(), node->handle()); | |
5370 } | |
5371 frame_->Push(&temp); | |
fschneider
2011/02/25 19:01:02
You may need to check for in_safe_int32_mode() her
| |
5365 } else { | 5372 } else { |
5366 frame_->Push(node->handle()); | 5373 if (in_safe_int32_mode()) { |
5374 frame_->PushUntaggedElement(node->handle()); | |
5375 } else { | |
5376 frame_->Push(node->handle()); | |
5377 } | |
5367 } | 5378 } |
5368 } | 5379 } |
5369 | 5380 |
5370 | 5381 |
5371 void CodeGenerator::PushUnsafeSmi(Handle<Object> value) { | 5382 void CodeGenerator::PushUnsafeSmi(Handle<Object> value) { |
5372 ASSERT(value->IsSmi()); | 5383 ASSERT(value->IsSmi()); |
5373 int bits = reinterpret_cast<int>(*value); | 5384 int bits = reinterpret_cast<int>(*value); |
5374 __ push(Immediate(bits ^ jit_cookie_)); | 5385 __ push(Immediate(bits ^ jit_cookie_)); |
5375 __ xor_(Operand(esp, 0), Immediate(jit_cookie_)); | 5386 __ xor_(Operand(esp, 0), Immediate(jit_cookie_)); |
5376 } | 5387 } |
(...skipping 4947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
10324 memcpy(chunk->GetStartAddress(), desc.buffer, desc.instr_size); | 10335 memcpy(chunk->GetStartAddress(), desc.buffer, desc.instr_size); |
10325 CPU::FlushICache(chunk->GetStartAddress(), desc.instr_size); | 10336 CPU::FlushICache(chunk->GetStartAddress(), desc.instr_size); |
10326 return FUNCTION_CAST<MemCopyFunction>(chunk->GetStartAddress()); | 10337 return FUNCTION_CAST<MemCopyFunction>(chunk->GetStartAddress()); |
10327 } | 10338 } |
10328 | 10339 |
10329 #undef __ | 10340 #undef __ |
10330 | 10341 |
10331 } } // namespace v8::internal | 10342 } } // namespace v8::internal |
10332 | 10343 |
10333 #endif // V8_TARGET_ARCH_IA32 | 10344 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |