Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: src/arm/lithium-arm.h

Issue 6167004: ARM: use existing transcendental cache stub for tagged inputs. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 class LParameter: public LInstruction { 438 class LParameter: public LInstruction {
439 public: 439 public:
440 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter") 440 DECLARE_CONCRETE_INSTRUCTION(Parameter, "parameter")
441 }; 441 };
442 442
443 443
444 class LCallStub: public LInstruction { 444 class LCallStub: public LInstruction {
445 public: 445 public:
446 DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub") 446 DECLARE_CONCRETE_INSTRUCTION(CallStub, "call-stub")
447 DECLARE_HYDROGEN_ACCESSOR(CallStub) 447 DECLARE_HYDROGEN_ACCESSOR(CallStub)
448
449 TranscendentalCache::Type transcendental_type() {
450 return hydrogen()->transcendental_type();
451 }
448 }; 452 };
449 453
450 454
451 class LUnknownOSRValue: public LInstruction { 455 class LUnknownOSRValue: public LInstruction {
452 public: 456 public:
453 DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value") 457 DECLARE_CONCRETE_INSTRUCTION(UnknownOSRValue, "unknown-osr-value")
454 }; 458 };
455 459
456 460
457 class LUnaryOperation: public LInstruction { 461 class LUnaryOperation: public LInstruction {
(...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after
2080 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2084 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2081 }; 2085 };
2082 2086
2083 #undef DECLARE_HYDROGEN_ACCESSOR 2087 #undef DECLARE_HYDROGEN_ACCESSOR
2084 #undef DECLARE_INSTRUCTION 2088 #undef DECLARE_INSTRUCTION
2085 #undef DECLARE_CONCRETE_INSTRUCTION 2089 #undef DECLARE_CONCRETE_INSTRUCTION
2086 2090
2087 } } // namespace v8::internal 2091 } } // namespace v8::internal
2088 2092
2089 #endif // V8_ARM_LITHIUM_ARM_H_ 2093 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698