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

Side by Side Diff: src/codegen.h

Issue 113259: Inline the code dealing with entering spilled scopes and maintaining a... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 7 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
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 // GenerateFastCaseSwitchStatement 65 // GenerateFastCaseSwitchStatement
66 // GenerateFastCaseSwitchCases 66 // GenerateFastCaseSwitchCases
67 // TryGenerateFastCaseSwitchStatement 67 // TryGenerateFastCaseSwitchStatement
68 // GenerateFastCaseSwitchJumpTable 68 // GenerateFastCaseSwitchJumpTable
69 // FastCaseSwitchMinCaseCount 69 // FastCaseSwitchMinCaseCount
70 // FastCaseSwitchMaxOverheadFactor 70 // FastCaseSwitchMaxOverheadFactor
71 // CodeForFunctionPosition 71 // CodeForFunctionPosition
72 // CodeForReturnPosition 72 // CodeForReturnPosition
73 // CodeForStatementPosition 73 // CodeForStatementPosition
74 // CodeForSourcePosition 74 // CodeForSourcePosition
75 // LoadAndSpill
76 // VisitAndSpill
77 // VisitStatementsAndSpill
75 78
76 79
77 // Mode to overwrite BinaryExpression values. 80 // Mode to overwrite BinaryExpression values.
78 enum OverwriteMode { NO_OVERWRITE, OVERWRITE_LEFT, OVERWRITE_RIGHT }; 81 enum OverwriteMode { NO_OVERWRITE, OVERWRITE_LEFT, OVERWRITE_RIGHT };
79 82
80 83
81 #if V8_TARGET_ARCH_IA32 84 #if V8_TARGET_ARCH_IA32
82 #include "ia32/codegen-ia32.h" 85 #include "ia32/codegen-ia32.h"
83 #elif V8_TARGET_ARCH_X64 86 #elif V8_TARGET_ARCH_X64
84 #include "x64/codegen-x64.h" 87 #include "x64/codegen-x64.h"
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 PrintF("ArgumentsAccessStub (type %d)\n", type_); 317 PrintF("ArgumentsAccessStub (type %d)\n", type_);
315 } 318 }
316 #endif 319 #endif
317 }; 320 };
318 321
319 322
320 } // namespace internal 323 } // namespace internal
321 } // namespace v8 324 } // namespace v8
322 325
323 #endif // V8_CODEGEN_H_ 326 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/arm/virtual-frame-arm.h ('k') | src/codegen-inl.h » ('j') | src/ia32/codegen-ia32.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698