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

Unified Diff: src/assembler.h

Issue 2109773004: Move RelocInfo::kNoPosition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@removedead
Patch Set: rebase Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/api.cc ('k') | src/ast/ast.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index af2d91976e9e3db382dd225d76e25687399d63ad..979cf83891112896e8ea96e9b78ffa63ff57de85 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -352,17 +352,6 @@ enum ICacheFlushMode { FLUSH_ICACHE_IF_NEEDED, SKIP_ICACHE_FLUSH };
class RelocInfo {
public:
- // The constant kNoPosition is used with the collecting of source positions
- // in the relocation information. Two types of source positions are collected
- // "position" (RelocMode position) and "statement position" (RelocMode
- // statement_position). The "position" is collected at places in the source
- // code which are of interest when making stack traces to pin-point the source
- // location of a stack frame as close as possible. The "statement position" is
- // collected at the beginning at each statement, and is used to indicate
- // possible break locations. kNoPosition is used to indicate an
- // invalid/uninitialized position value.
- static const int kNoPosition = -1;
-
// This string is used to add padding comments to the reloc info in cases
// where we are not sure to have enough space for patching in during
// lazy deoptimization. This is the case if we have indirect calls for which
« no previous file with comments | « src/api.cc ('k') | src/ast/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698