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

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

Issue 5640004: Allow the optimizing code generator to call Math.pow with untagged doubles. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years 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 | « src/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/lithium-ia32.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 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 // LCmpJSObjectEq 60 // LCmpJSObjectEq
61 // LCmpJSObjectEqAndBranch 61 // LCmpJSObjectEqAndBranch
62 // LCmpT 62 // LCmpT
63 // LDivI 63 // LDivI
64 // LInstanceOf 64 // LInstanceOf
65 // LInstanceOfAndBranch 65 // LInstanceOfAndBranch
66 // LLoadKeyedFastElement 66 // LLoadKeyedFastElement
67 // LLoadKeyedGeneric 67 // LLoadKeyedGeneric
68 // LModI 68 // LModI
69 // LMulI 69 // LMulI
70 // LPower
70 // LShiftI 71 // LShiftI
71 // LSubI 72 // LSubI
72 // LCallConstantFunction 73 // LCallConstantFunction
73 // LCallFunction 74 // LCallFunction
74 // LCallGlobal 75 // LCallGlobal
75 // LCallKeyed 76 // LCallKeyed
76 // LCallKnownGlobal 77 // LCallKnownGlobal
77 // LCallNamed 78 // LCallNamed
78 // LCallRuntime 79 // LCallRuntime
79 // LCallStub 80 // LCallStub
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 V(LoadNamedField) \ 223 V(LoadNamedField) \
223 V(LoadNamedGeneric) \ 224 V(LoadNamedGeneric) \
224 V(ModI) \ 225 V(ModI) \
225 V(MulI) \ 226 V(MulI) \
226 V(NumberTagD) \ 227 V(NumberTagD) \
227 V(NumberTagI) \ 228 V(NumberTagI) \
228 V(NumberUntagD) \ 229 V(NumberUntagD) \
229 V(ObjectLiteral) \ 230 V(ObjectLiteral) \
230 V(OsrEntry) \ 231 V(OsrEntry) \
231 V(Parameter) \ 232 V(Parameter) \
233 V(Power) \
232 V(PushArgument) \ 234 V(PushArgument) \
233 V(RegExpLiteral) \ 235 V(RegExpLiteral) \
234 V(Return) \ 236 V(Return) \
235 V(ShiftI) \ 237 V(ShiftI) \
236 V(SmiTag) \ 238 V(SmiTag) \
237 V(SmiUntag) \ 239 V(SmiUntag) \
238 V(StackCheck) \ 240 V(StackCheck) \
239 V(StoreGlobal) \ 241 V(StoreGlobal) \
240 V(StoreKeyedFastElement) \ 242 V(StoreKeyedFastElement) \
241 V(StoreKeyedGeneric) \ 243 V(StoreKeyedGeneric) \
(...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 class LAddI: public LBinaryOperation { 1149 class LAddI: public LBinaryOperation {
1148 public: 1150 public:
1149 LAddI(LOperand* left, LOperand* right) 1151 LAddI(LOperand* left, LOperand* right)
1150 : LBinaryOperation(left, right) { } 1152 : LBinaryOperation(left, right) { }
1151 1153
1152 DECLARE_CONCRETE_INSTRUCTION(AddI, "add-i") 1154 DECLARE_CONCRETE_INSTRUCTION(AddI, "add-i")
1153 DECLARE_HYDROGEN_ACCESSOR(Add) 1155 DECLARE_HYDROGEN_ACCESSOR(Add)
1154 }; 1156 };
1155 1157
1156 1158
1159 class LPower: public LBinaryOperation {
1160 public:
1161 LPower(LOperand* left, LOperand* right)
1162 : LBinaryOperation(left, right) { }
1163
1164 DECLARE_CONCRETE_INSTRUCTION(Power, "power")
1165 DECLARE_HYDROGEN_ACCESSOR(Power)
1166 };
1167
1168
1157 class LArithmeticD: public LBinaryOperation { 1169 class LArithmeticD: public LBinaryOperation {
1158 public: 1170 public:
1159 LArithmeticD(Token::Value op, LOperand* left, LOperand* right) 1171 LArithmeticD(Token::Value op, LOperand* left, LOperand* right)
1160 : LBinaryOperation(left, right), op_(op) { } 1172 : LBinaryOperation(left, right), op_(op) { }
1161 1173
1162 Token::Value op() const { return op_; } 1174 Token::Value op() const { return op_; }
1163 1175
1164 virtual void CompileToNative(LCodeGen* generator); 1176 virtual void CompileToNative(LCodeGen* generator);
1165 virtual const char* Mnemonic() const; 1177 virtual const char* Mnemonic() const;
1166 1178
(...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
2061 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2073 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2062 }; 2074 };
2063 2075
2064 #undef DECLARE_HYDROGEN_ACCESSOR 2076 #undef DECLARE_HYDROGEN_ACCESSOR
2065 #undef DECLARE_INSTRUCTION 2077 #undef DECLARE_INSTRUCTION
2066 #undef DECLARE_CONCRETE_INSTRUCTION 2078 #undef DECLARE_CONCRETE_INSTRUCTION
2067 2079
2068 } } // namespace v8::internal 2080 } } // namespace v8::internal
2069 2081
2070 #endif // V8_IA32_LITHIUM_IA32_H_ 2082 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698