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

Side by Side Diff: src/arm/code-stubs-arm.h

Issue 6794050: Revert "[Arguments] Merge (7442,7496] from bleeding_edge." (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/arguments
Patch Set: Created 9 years, 8 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 | « src/arm/builtins-arm.cc ('k') | src/arm/code-stubs-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 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 228
229 229
230 class TypeRecordingBinaryOpStub: public CodeStub { 230 class TypeRecordingBinaryOpStub: public CodeStub {
231 public: 231 public:
232 TypeRecordingBinaryOpStub(Token::Value op, OverwriteMode mode) 232 TypeRecordingBinaryOpStub(Token::Value op, OverwriteMode mode)
233 : op_(op), 233 : op_(op),
234 mode_(mode), 234 mode_(mode),
235 operands_type_(TRBinaryOpIC::UNINITIALIZED), 235 operands_type_(TRBinaryOpIC::UNINITIALIZED),
236 result_type_(TRBinaryOpIC::UNINITIALIZED), 236 result_type_(TRBinaryOpIC::UNINITIALIZED),
237 name_(NULL) { 237 name_(NULL) {
238 use_vfp3_ = CpuFeatures::IsSupported(VFP3); 238 use_vfp3_ = Isolate::Current()->cpu_features()->IsSupported(VFP3);
239 ASSERT(OpBits::is_valid(Token::NUM_TOKENS)); 239 ASSERT(OpBits::is_valid(Token::NUM_TOKENS));
240 } 240 }
241 241
242 TypeRecordingBinaryOpStub( 242 TypeRecordingBinaryOpStub(
243 int key, 243 int key,
244 TRBinaryOpIC::TypeInfo operands_type, 244 TRBinaryOpIC::TypeInfo operands_type,
245 TRBinaryOpIC::TypeInfo result_type = TRBinaryOpIC::UNINITIALIZED) 245 TRBinaryOpIC::TypeInfo result_type = TRBinaryOpIC::UNINITIALIZED)
246 : op_(OpBits::decode(key)), 246 : op_(OpBits::decode(key)),
247 mode_(ModeBits::decode(key)), 247 mode_(ModeBits::decode(key)),
248 use_vfp3_(VFP3Bits::decode(key)), 248 use_vfp3_(VFP3Bits::decode(key)),
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 614
615 bool NeedsImmovableCode() { return true; } 615 bool NeedsImmovableCode() { return true; }
616 616
617 const char* GetName() { return "DirectCEntryStub"; } 617 const char* GetName() { return "DirectCEntryStub"; }
618 }; 618 };
619 619
620 620
621 } } // namespace v8::internal 621 } } // namespace v8::internal
622 622
623 #endif // V8_ARM_CODE_STUBS_ARM_H_ 623 #endif // V8_ARM_CODE_STUBS_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/builtins-arm.cc ('k') | src/arm/code-stubs-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698