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

Side by Side Diff: src/objects.h

Issue 104203003: Remove unused trigonometric code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comment Created 7 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/mips/lithium-mips.cc ('k') | src/platform.h » ('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 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 6476 matching lines...) Expand 10 before | Expand all | Expand 10 after
6487 V(Array.prototype, pop, ArrayPop) \ 6487 V(Array.prototype, pop, ArrayPop) \
6488 V(Function.prototype, apply, FunctionApply) \ 6488 V(Function.prototype, apply, FunctionApply) \
6489 V(String.prototype, charCodeAt, StringCharCodeAt) \ 6489 V(String.prototype, charCodeAt, StringCharCodeAt) \
6490 V(String.prototype, charAt, StringCharAt) \ 6490 V(String.prototype, charAt, StringCharAt) \
6491 V(String, fromCharCode, StringFromCharCode) \ 6491 V(String, fromCharCode, StringFromCharCode) \
6492 V(Math, floor, MathFloor) \ 6492 V(Math, floor, MathFloor) \
6493 V(Math, round, MathRound) \ 6493 V(Math, round, MathRound) \
6494 V(Math, ceil, MathCeil) \ 6494 V(Math, ceil, MathCeil) \
6495 V(Math, abs, MathAbs) \ 6495 V(Math, abs, MathAbs) \
6496 V(Math, log, MathLog) \ 6496 V(Math, log, MathLog) \
6497 V(Math, sin, MathSin) \
6498 V(Math, cos, MathCos) \
6499 V(Math, tan, MathTan) \
6500 V(Math, asin, MathASin) \
6501 V(Math, acos, MathACos) \
6502 V(Math, atan, MathATan) \
6503 V(Math, exp, MathExp) \ 6497 V(Math, exp, MathExp) \
6504 V(Math, sqrt, MathSqrt) \ 6498 V(Math, sqrt, MathSqrt) \
6505 V(Math, pow, MathPow) \ 6499 V(Math, pow, MathPow) \
6506 V(Math, max, MathMax) \ 6500 V(Math, max, MathMax) \
6507 V(Math, min, MathMin) \ 6501 V(Math, min, MathMin) \
6508 V(Math, imul, MathImul) 6502 V(Math, imul, MathImul)
6509 6503
6510 enum BuiltinFunctionId { 6504 enum BuiltinFunctionId {
6511 kArrayCode, 6505 kArrayCode,
6512 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \ 6506 #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \
(...skipping 4099 matching lines...) Expand 10 before | Expand all | Expand 10 after
10612 } else { 10606 } else {
10613 value &= ~(1 << bit_position); 10607 value &= ~(1 << bit_position);
10614 } 10608 }
10615 return value; 10609 return value;
10616 } 10610 }
10617 }; 10611 };
10618 10612
10619 } } // namespace v8::internal 10613 } } // namespace v8::internal
10620 10614
10621 #endif // V8_OBJECTS_H_ 10615 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698