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

Side by Side Diff: src/a64/assembler-a64-inl.h

Issue 203443003: A64: Force emission of the veneer pool emission when required. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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/a64/assembler-a64.cc ('k') | src/a64/full-codegen-a64.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 LoadRelocatedValue(rt, operand, LDR_x_lit); 1200 LoadRelocatedValue(rt, operand, LDR_x_lit);
1201 } 1201 }
1202 1202
1203 1203
1204 inline void Assembler::CheckBuffer() { 1204 inline void Assembler::CheckBuffer() {
1205 ASSERT(pc_ < (buffer_ + buffer_size_)); 1205 ASSERT(pc_ < (buffer_ + buffer_size_));
1206 if (buffer_space() < kGap) { 1206 if (buffer_space() < kGap) {
1207 GrowBuffer(); 1207 GrowBuffer();
1208 } 1208 }
1209 if (pc_offset() >= next_veneer_pool_check_) { 1209 if (pc_offset() >= next_veneer_pool_check_) {
1210 CheckVeneerPool(true); 1210 CheckVeneerPool(false, true);
1211 } 1211 }
1212 if (pc_offset() >= next_constant_pool_check_) { 1212 if (pc_offset() >= next_constant_pool_check_) {
1213 CheckConstPool(false, true); 1213 CheckConstPool(false, true);
1214 } 1214 }
1215 } 1215 }
1216 1216
1217 1217
1218 TypeFeedbackId Assembler::RecordedAstId() { 1218 TypeFeedbackId Assembler::RecordedAstId() {
1219 ASSERT(!recorded_ast_id_.IsNone()); 1219 ASSERT(!recorded_ast_id_.IsNone());
1220 return recorded_ast_id_; 1220 return recorded_ast_id_;
1221 } 1221 }
1222 1222
1223 1223
1224 void Assembler::ClearRecordedAstId() { 1224 void Assembler::ClearRecordedAstId() {
1225 recorded_ast_id_ = TypeFeedbackId::None(); 1225 recorded_ast_id_ = TypeFeedbackId::None();
1226 } 1226 }
1227 1227
1228 1228
1229 } } // namespace v8::internal 1229 } } // namespace v8::internal
1230 1230
1231 #endif // V8_A64_ASSEMBLER_A64_INL_H_ 1231 #endif // V8_A64_ASSEMBLER_A64_INL_H_
OLDNEW
« no previous file with comments | « src/a64/assembler-a64.cc ('k') | src/a64/full-codegen-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698