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

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

Issue 2693002: More precise break points and stepping when debugging... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ia32/assembler-ia32-inl.h ('k') | src/ia32/debug-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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 309
310 // Allocate and install the code. 310 // Allocate and install the code.
311 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm, 311 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
312 Code::Flags flags, 312 Code::Flags flags,
313 CompilationInfo* info); 313 CompilationInfo* info);
314 314
315 #ifdef ENABLE_LOGGING_AND_PROFILING 315 #ifdef ENABLE_LOGGING_AND_PROFILING
316 static bool ShouldGenerateLog(Expression* type); 316 static bool ShouldGenerateLog(Expression* type);
317 #endif 317 #endif
318 318
319 static void RecordPositions(MacroAssembler* masm, int pos); 319 static bool RecordPositions(MacroAssembler* masm,
320 int pos,
321 bool right_here = false);
320 322
321 // Accessors 323 // Accessors
322 MacroAssembler* masm() { return masm_; } 324 MacroAssembler* masm() { return masm_; }
323 VirtualFrame* frame() const { return frame_; } 325 VirtualFrame* frame() const { return frame_; }
324 inline Handle<Script> script(); 326 inline Handle<Script> script();
325 327
326 bool has_valid_frame() const { return frame_ != NULL; } 328 bool has_valid_frame() const { return frame_ != NULL; }
327 329
328 // Set the virtual frame to be new_frame, with non-frame register 330 // Set the virtual frame to be new_frame, with non-frame register
329 // reference counts given by non_frame_registers. The non-frame 331 // reference counts given by non_frame_registers. The non-frame
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 void Print() { 1057 void Print() {
1056 PrintF("NumberToStringStub\n"); 1058 PrintF("NumberToStringStub\n");
1057 } 1059 }
1058 #endif 1060 #endif
1059 }; 1061 };
1060 1062
1061 1063
1062 } } // namespace v8::internal 1064 } } // namespace v8::internal
1063 1065
1064 #endif // V8_IA32_CODEGEN_IA32_H_ 1066 #endif // V8_IA32_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32-inl.h ('k') | src/ia32/debug-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698