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

Side by Side Diff: src/compiler/js-operator.h

Issue 2264283007: Fix compiler warnings on "make android_arm" (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_JS_OPERATOR_H_ 5 #ifndef V8_COMPILER_JS_OPERATOR_H_
6 #define V8_COMPILER_JS_OPERATOR_H_ 6 #define V8_COMPILER_JS_OPERATOR_H_
7 7
8 #include "src/compiler/type-hints.h" 8 #include "src/compiler/type-hints.h"
9 #include "src/runtime/runtime.h" 9 #include "src/runtime/runtime.h"
10 10
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 367
368 bool operator==(CreateLiteralParameters const&, CreateLiteralParameters const&); 368 bool operator==(CreateLiteralParameters const&, CreateLiteralParameters const&);
369 bool operator!=(CreateLiteralParameters const&, CreateLiteralParameters const&); 369 bool operator!=(CreateLiteralParameters const&, CreateLiteralParameters const&);
370 370
371 size_t hash_value(CreateLiteralParameters const&); 371 size_t hash_value(CreateLiteralParameters const&);
372 372
373 std::ostream& operator<<(std::ostream&, CreateLiteralParameters const&); 373 std::ostream& operator<<(std::ostream&, CreateLiteralParameters const&);
374 374
375 const CreateLiteralParameters& CreateLiteralParametersOf(const Operator* op); 375 const CreateLiteralParameters& CreateLiteralParametersOf(const Operator* op);
376 376
377 const BinaryOperationHint BinaryOperationHintOf(const Operator* op); 377 BinaryOperationHint BinaryOperationHintOf(const Operator* op);
Jakob Kummerow 2016/08/25 11:35:11 ../../src/compiler/js-operator.h:377:67: warning:
378 378
379 const CompareOperationHint CompareOperationHintOf(const Operator* op); 379 CompareOperationHint CompareOperationHintOf(const Operator* op);
Jakob Kummerow 2016/08/25 11:35:11 ../../src/compiler/js-operator.h:379:69: warning:
380 380
381 // Interface for building JavaScript-level operators, e.g. directly from the 381 // Interface for building JavaScript-level operators, e.g. directly from the
382 // AST. Most operators have no parameters, thus can be globally shared for all 382 // AST. Most operators have no parameters, thus can be globally shared for all
383 // graphs. 383 // graphs.
384 class JSOperatorBuilder final : public ZoneObject { 384 class JSOperatorBuilder final : public ZoneObject {
385 public: 385 public:
386 explicit JSOperatorBuilder(Zone* zone); 386 explicit JSOperatorBuilder(Zone* zone);
387 387
388 const Operator* Equal(CompareOperationHint hint); 388 const Operator* Equal(CompareOperationHint hint);
389 const Operator* NotEqual(CompareOperationHint hint); 389 const Operator* NotEqual(CompareOperationHint hint);
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 Zone* const zone_; 496 Zone* const zone_;
497 497
498 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 498 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
499 }; 499 };
500 500
501 } // namespace compiler 501 } // namespace compiler
502 } // namespace internal 502 } // namespace internal
503 } // namespace v8 503 } // namespace v8
504 504
505 #endif // V8_COMPILER_JS_OPERATOR_H_ 505 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698