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

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

Issue 11744020: Rename RelocInfo::NONE to RelocInfo::NONE32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 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/code-stubs-ia32.cc ('k') | src/ia32/deoptimizer-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 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 920 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 Code::Age age, 931 Code::Age age,
932 MarkingParity parity) { 932 MarkingParity parity) {
933 uint32_t young_length; 933 uint32_t young_length;
934 byte* young_sequence = GetNoCodeAgeSequence(&young_length); 934 byte* young_sequence = GetNoCodeAgeSequence(&young_length);
935 if (age == kNoAge) { 935 if (age == kNoAge) {
936 memcpy(sequence, young_sequence, young_length); 936 memcpy(sequence, young_sequence, young_length);
937 CPU::FlushICache(sequence, young_length); 937 CPU::FlushICache(sequence, young_length);
938 } else { 938 } else {
939 Code* stub = GetCodeAgeStub(age, parity); 939 Code* stub = GetCodeAgeStub(age, parity);
940 CodePatcher patcher(sequence, young_length); 940 CodePatcher patcher(sequence, young_length);
941 patcher.masm()->call(stub->instruction_start(), RelocInfo::NONE); 941 patcher.masm()->call(stub->instruction_start(), RelocInfo::NONE32);
942 } 942 }
943 } 943 }
944 944
945 945
946 } } // namespace v8::internal 946 } } // namespace v8::internal
947 947
948 #endif // V8_TARGET_ARCH_IA32 948 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/ia32/deoptimizer-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698