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

Side by Side Diff: src/regexp-macro-assembler-tracer.cc

Issue 11275184: First draft of the sh4 port Base URL: http://github.com/v8/v8.git@master
Patch Set: Use GYP and fixe some typos 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
« no previous file with comments | « src/regexp-macro-assembler.h ('k') | src/sh4/assembler-sh4.h » ('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 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 20 matching lines...) Expand all
31 #include "regexp-macro-assembler-tracer.h" 31 #include "regexp-macro-assembler-tracer.h"
32 32
33 namespace v8 { 33 namespace v8 {
34 namespace internal { 34 namespace internal {
35 35
36 RegExpMacroAssemblerTracer::RegExpMacroAssemblerTracer( 36 RegExpMacroAssemblerTracer::RegExpMacroAssemblerTracer(
37 RegExpMacroAssembler* assembler) : 37 RegExpMacroAssembler* assembler) :
38 RegExpMacroAssembler(assembler->zone()), 38 RegExpMacroAssembler(assembler->zone()),
39 assembler_(assembler) { 39 assembler_(assembler) {
40 unsigned int type = assembler->Implementation(); 40 unsigned int type = assembler->Implementation();
41 ASSERT(type < 5); 41 ASSERT(type < 6);
42 const char* impl_names[] = {"IA32", "ARM", "MIPS", "X64", "Bytecode"}; 42 const char* impl_names[6] = {"IA32", "ARM", "MIPS", "SH4", "X64", "Bytecode"};
43 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]); 43 PrintF("RegExpMacroAssembler%s();\n", impl_names[type]);
44 } 44 }
45 45
46 46
47 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() { 47 RegExpMacroAssemblerTracer::~RegExpMacroAssemblerTracer() {
48 } 48 }
49 49
50 50
51 // This is used for printing out debugging information. It makes an integer 51 // This is used for printing out debugging information. It makes an integer
52 // that is closely related to the address of an object. 52 // that is closely related to the address of an object.
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 return assembler_->Implementation(); 440 return assembler_->Implementation();
441 } 441 }
442 442
443 443
444 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) { 444 Handle<HeapObject> RegExpMacroAssemblerTracer::GetCode(Handle<String> source) {
445 PrintF(" GetCode(%s);\n", *(source->ToCString())); 445 PrintF(" GetCode(%s);\n", *(source->ToCString()));
446 return assembler_->GetCode(source); 446 return assembler_->GetCode(source);
447 } 447 }
448 448
449 }} // namespace v8::internal 449 }} // namespace v8::internal
OLDNEW
« no previous file with comments | « src/regexp-macro-assembler.h ('k') | src/sh4/assembler-sh4.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698