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

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

Issue 7350014: Remove the ability to compile without logging and profiling (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed review comments Created 9 years, 5 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/ia32/code-stubs-ia32.cc ('k') | src/ia32/full-codegen-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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 static void MakeCodePrologue(CompilationInfo* info); 46 static void MakeCodePrologue(CompilationInfo* info);
47 47
48 // Allocate and install the code. 48 // Allocate and install the code.
49 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm, 49 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
50 Code::Flags flags, 50 Code::Flags flags,
51 CompilationInfo* info); 51 CompilationInfo* info);
52 52
53 // Print the code after compiling it. 53 // Print the code after compiling it.
54 static void PrintCode(Handle<Code> code, CompilationInfo* info); 54 static void PrintCode(Handle<Code> code, CompilationInfo* info);
55 55
56 #ifdef ENABLE_LOGGING_AND_PROFILING
57 static bool ShouldGenerateLog(Expression* type); 56 static bool ShouldGenerateLog(Expression* type);
58 #endif
59 57
60 static bool RecordPositions(MacroAssembler* masm, 58 static bool RecordPositions(MacroAssembler* masm,
61 int pos, 59 int pos,
62 bool right_here = false); 60 bool right_here = false);
63 61
64 62
65 static Operand FixedArrayElementOperand(Register array, 63 static Operand FixedArrayElementOperand(Register array,
66 Register index_as_smi, 64 Register index_as_smi,
67 int additional_offset = 0) { 65 int additional_offset = 0) {
68 int offset = FixedArray::kHeaderSize + additional_offset * kPointerSize; 66 int offset = FixedArray::kHeaderSize + additional_offset * kPointerSize;
69 return FieldOperand(array, index_as_smi, times_half_pointer_size, offset); 67 return FieldOperand(array, index_as_smi, times_half_pointer_size, offset);
70 } 68 }
71 69
72 private: 70 private:
73 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); 71 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
74 }; 72 };
75 73
76 74
77 } } // namespace v8::internal 75 } } // namespace v8::internal
78 76
79 #endif // V8_IA32_CODEGEN_IA32_H_ 77 #endif // V8_IA32_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698