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

Side by Side Diff: src/x64/macro-assembler-x64.h

Issue 10701054: Enable stub generation using Hydrogen/Lithium (again) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: First pass at pre-VFP2 RA Created 8 years, 1 month 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 // Helper for throwing exceptions. Compute a handler address and jump to 1406 // Helper for throwing exceptions. Compute a handler address and jump to
1407 // it. See the implementation for register usage. 1407 // it. See the implementation for register usage.
1408 void JumpToHandlerEntry(); 1408 void JumpToHandlerEntry();
1409 1409
1410 // Compute memory operands for safepoint stack slots. 1410 // Compute memory operands for safepoint stack slots.
1411 Operand SafepointRegisterSlot(Register reg); 1411 Operand SafepointRegisterSlot(Register reg);
1412 static int SafepointRegisterStackIndex(int reg_code) { 1412 static int SafepointRegisterStackIndex(int reg_code) {
1413 return kNumSafepointRegisters - kSafepointPushRegisterIndices[reg_code] - 1; 1413 return kNumSafepointRegisters - kSafepointPushRegisterIndices[reg_code] - 1;
1414 } 1414 }
1415 1415
1416 // Needs access to SafepointRegisterStackIndex for optimized frame 1416 // Needs access to SafepointRegisterStackIndex for compiled frame
1417 // traversal. 1417 // traversal.
1418 friend class OptimizedFrame; 1418 friend class CompiledFrame;
1419 }; 1419 };
1420 1420
1421 1421
1422 // The code patcher is used to patch (typically) small parts of code e.g. for 1422 // The code patcher is used to patch (typically) small parts of code e.g. for
1423 // debugging and other types of instrumentation. When using the code patcher 1423 // debugging and other types of instrumentation. When using the code patcher
1424 // the exact number of bytes specified must be emitted. Is not legal to emit 1424 // the exact number of bytes specified must be emitted. Is not legal to emit
1425 // relocation information. If any of these constraints are violated it causes 1425 // relocation information. If any of these constraints are violated it causes
1426 // an assertion. 1426 // an assertion.
1427 class CodePatcher { 1427 class CodePatcher {
1428 public: 1428 public:
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
1496 masm->popfd(); \ 1496 masm->popfd(); \
1497 } \ 1497 } \
1498 masm-> 1498 masm->
1499 #else 1499 #else
1500 #define ACCESS_MASM(masm) masm-> 1500 #define ACCESS_MASM(masm) masm->
1501 #endif 1501 #endif
1502 1502
1503 } } // namespace v8::internal 1503 } } // namespace v8::internal
1504 1504
1505 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_ 1505 #endif // V8_X64_MACRO_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698