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

Side by Side Diff: src/mips/lithium-codegen-mips.h

Issue 246253007: MIPS: Improve code generation for bounds checks. (Closed) Base URL: https://github.com/v8/v8.git@gbl
Patch Set: Created 6 years, 8 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
« no previous file with comments | « no previous file | src/mips/lithium-codegen-mips.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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 Safepoint::DeoptMode mode); 256 Safepoint::DeoptMode mode);
257 void DeoptimizeIf(Condition condition, 257 void DeoptimizeIf(Condition condition,
258 LEnvironment* environment, 258 LEnvironment* environment,
259 Deoptimizer::BailoutType bailout_type, 259 Deoptimizer::BailoutType bailout_type,
260 Register src1 = zero_reg, 260 Register src1 = zero_reg,
261 const Operand& src2 = Operand(zero_reg)); 261 const Operand& src2 = Operand(zero_reg));
262 void DeoptimizeIf(Condition condition, 262 void DeoptimizeIf(Condition condition,
263 LEnvironment* environment, 263 LEnvironment* environment,
264 Register src1 = zero_reg, 264 Register src1 = zero_reg,
265 const Operand& src2 = Operand(zero_reg)); 265 const Operand& src2 = Operand(zero_reg));
266 void ApplyCheckIf(Condition condition,
267 LBoundsCheck* check,
268 Register src1 = zero_reg,
269 const Operand& src2 = Operand(zero_reg));
270 266
271 void AddToTranslation(LEnvironment* environment, 267 void AddToTranslation(LEnvironment* environment,
272 Translation* translation, 268 Translation* translation,
273 LOperand* op, 269 LOperand* op,
274 bool is_tagged, 270 bool is_tagged,
275 bool is_uint32, 271 bool is_uint32,
276 int* object_index_pointer, 272 int* object_index_pointer,
277 int* dematerialized_index_pointer); 273 int* dematerialized_index_pointer);
278 void PopulateDeoptimizationData(Handle<Code> code); 274 void PopulateDeoptimizationData(Handle<Code> code);
279 int DefineDeoptimizationLiteral(Handle<Object> literal); 275 int DefineDeoptimizationLiteral(Handle<Object> literal);
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 LCodeGen* codegen_; 498 LCodeGen* codegen_;
503 Label entry_; 499 Label entry_;
504 Label exit_; 500 Label exit_;
505 Label* external_exit_; 501 Label* external_exit_;
506 int instruction_index_; 502 int instruction_index_;
507 }; 503 };
508 504
509 } } // namespace v8::internal 505 } } // namespace v8::internal
510 506
511 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_ 507 #endif // V8_MIPS_LITHIUM_CODEGEN_MIPS_H_
OLDNEW
« no previous file with comments | « no previous file | src/mips/lithium-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698