OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |