| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 4079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4090 | 4090 |
| 4091 HInstruction* HStringCharFromCode::New( | 4091 HInstruction* HStringCharFromCode::New( |
| 4092 Zone* zone, HValue* context, HValue* char_code) { | 4092 Zone* zone, HValue* context, HValue* char_code) { |
| 4093 if (FLAG_fold_constants && char_code->IsConstant()) { | 4093 if (FLAG_fold_constants && char_code->IsConstant()) { |
| 4094 HConstant* c_code = HConstant::cast(char_code); | 4094 HConstant* c_code = HConstant::cast(char_code); |
| 4095 Isolate* isolate = zone->isolate(); | 4095 Isolate* isolate = zone->isolate(); |
| 4096 if (c_code->HasNumberValue()) { | 4096 if (c_code->HasNumberValue()) { |
| 4097 if (std::isfinite(c_code->DoubleValue())) { | 4097 if (std::isfinite(c_code->DoubleValue())) { |
| 4098 uint32_t code = c_code->NumberValueAsInteger32() & 0xffff; | 4098 uint32_t code = c_code->NumberValueAsInteger32() & 0xffff; |
| 4099 return HConstant::New(zone, context, | 4099 return HConstant::New(zone, context, |
| 4100 LookupSingleCharacterStringFromCode(isolate, code)); | 4100 isolate->factory()->LookupSingleCharacterStringFromCode(code)); |
| 4101 } | 4101 } |
| 4102 return HConstant::New(zone, context, isolate->factory()->empty_string()); | 4102 return HConstant::New(zone, context, isolate->factory()->empty_string()); |
| 4103 } | 4103 } |
| 4104 } | 4104 } |
| 4105 return new(zone) HStringCharFromCode(context, char_code); | 4105 return new(zone) HStringCharFromCode(context, char_code); |
| 4106 } | 4106 } |
| 4107 | 4107 |
| 4108 | 4108 |
| 4109 HInstruction* HUnaryMathOperation::New( | 4109 HInstruction* HUnaryMathOperation::New( |
| 4110 Zone* zone, HValue* context, HValue* value, BuiltinFunctionId op) { | 4110 Zone* zone, HValue* context, HValue* value, BuiltinFunctionId op) { |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4726 break; | 4726 break; |
| 4727 case kExternalMemory: | 4727 case kExternalMemory: |
| 4728 stream->Add("[external-memory]"); | 4728 stream->Add("[external-memory]"); |
| 4729 break; | 4729 break; |
| 4730 } | 4730 } |
| 4731 | 4731 |
| 4732 stream->Add("@%d", offset()); | 4732 stream->Add("@%d", offset()); |
| 4733 } | 4733 } |
| 4734 | 4734 |
| 4735 } } // namespace v8::internal | 4735 } } // namespace v8::internal |
| OLD | NEW |