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

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

Issue 1371083003: [presubmit] Enable readability/namespace linter checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 2 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
« no previous file with comments | « src/checks.h ('k') | src/codegen.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 // 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_CODE_STUBS_H_ 5 #ifndef V8_CODE_STUBS_H_
6 #define V8_CODE_STUBS_H_ 6 #define V8_CODE_STUBS_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/assembler.h" 9 #include "src/assembler.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 virtual void AfterCall(MacroAssembler* masm) const = 0; 590 virtual void AfterCall(MacroAssembler* masm) const = 0;
591 591
592 protected: 592 protected:
593 RuntimeCallHelper() {} 593 RuntimeCallHelper() {}
594 594
595 private: 595 private:
596 DISALLOW_COPY_AND_ASSIGN(RuntimeCallHelper); 596 DISALLOW_COPY_AND_ASSIGN(RuntimeCallHelper);
597 }; 597 };
598 598
599 599
600 } } // namespace v8::internal 600 } // namespace internal
601 } // namespace v8
601 602
602 #if V8_TARGET_ARCH_IA32 603 #if V8_TARGET_ARCH_IA32
603 #include "src/ia32/code-stubs-ia32.h" 604 #include "src/ia32/code-stubs-ia32.h"
604 #elif V8_TARGET_ARCH_X64 605 #elif V8_TARGET_ARCH_X64
605 #include "src/x64/code-stubs-x64.h" 606 #include "src/x64/code-stubs-x64.h"
606 #elif V8_TARGET_ARCH_ARM64 607 #elif V8_TARGET_ARCH_ARM64
607 #include "src/arm64/code-stubs-arm64.h" 608 #include "src/arm64/code-stubs-arm64.h"
608 #elif V8_TARGET_ARCH_ARM 609 #elif V8_TARGET_ARCH_ARM
609 #include "src/arm/code-stubs-arm.h" 610 #include "src/arm/code-stubs-arm.h"
610 #elif V8_TARGET_ARCH_PPC 611 #elif V8_TARGET_ARCH_PPC
(...skipping 2480 matching lines...) Expand 10 before | Expand all | Expand 10 after
3091 #undef DEFINE_HYDROGEN_CODE_STUB 3092 #undef DEFINE_HYDROGEN_CODE_STUB
3092 #undef DEFINE_CODE_STUB 3093 #undef DEFINE_CODE_STUB
3093 #undef DEFINE_CODE_STUB_BASE 3094 #undef DEFINE_CODE_STUB_BASE
3094 3095
3095 extern Representation RepresentationFromType(Type* type); 3096 extern Representation RepresentationFromType(Type* type);
3096 3097
3097 } // namespace internal 3098 } // namespace internal
3098 } // namespace v8 3099 } // namespace v8
3099 3100
3100 #endif // V8_CODE_STUBS_H_ 3101 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/checks.h ('k') | src/codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698