HomeSort by relevance Sort by last modified time
    Searched defs:ast_id (Results 1 - 11 of 11) sorted by null

  /external/v8/src/arm/
deoptimizer-arm.cc 199 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
203 if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
220 unsigned ast_id = data->OsrAstId()->value(); local
222 int bailout_id = LookupBailoutId(data, ast_id);
240 ASSERT(node_id == ast_id);
263 ast_id,
lithium-arm.cc 714 LInstruction* instr, int ast_id) {
718 pending_deoptimization_ast_id_ = ast_id;
742 instr, sim->ast_id());
1003 int ast_id = hydrogen_env->ast_id(); local
1004 ASSERT(ast_id != AstNode::kNoNumber);
1007 ast_id,
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 274 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
278 if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
295 unsigned ast_id = data->OsrAstId()->value(); local
298 ASSERT(bailout_id_ == ast_id);
300 int bailout_id = LookupBailoutId(data, ast_id);
318 ASSERT(node_id == ast_id);
341 ast_id,
lithium-ia32.cc 708 LInstruction* instr, int ast_id) {
712 pending_deoptimization_ast_id_ = ast_id;
736 instr, sim->ast_id());
996 int ast_id = hydrogen_env->ast_id(); local
997 ASSERT(ast_id != AstNode::kNoNumber);
1000 ast_id,
    [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 266 static int LookupBailoutId(DeoptimizationInputData* data, unsigned ast_id) {
270 if (static_cast<unsigned>(data->AstId(i)->value()) == ast_id) {
287 unsigned ast_id = data->OsrAstId()->value(); local
290 ASSERT(bailout_id_ == ast_id);
292 int bailout_id = LookupBailoutId(data, ast_id);
310 ASSERT(node_id == ast_id);
333 ast_id,
lithium-x64.cc 709 LInstruction* instr, int ast_id) {
713 pending_deoptimization_ast_id_ = ast_id;
737 instr, sim->ast_id());
998 int ast_id = hydrogen_env->ast_id(); local
999 ASSERT(ast_id != AstNode::kNoNumber);
1002 ast_id,
    [all...]
  /external/v8/src/
frames.cc 735 int ast_id = it.Next(); local
769 ast_id,
    [all...]
lithium.h 435 int ast_id,
444 ast_id_(ast_id),
457 int ast_id() const { return ast_id_; } function in class:v8::internal::LEnvironment
hydrogen-instructions.h 991 HSimulate(int ast_id, int pop_count)
992 : ast_id_(ast_id),
1001 int ast_id() const { return ast_id_; }
2747 int ast_id() const { return ast_id_; } function in class:v8::HOsrEntry
    [all...]
hydrogen.h 331 int ast_id() const { return ast_id_; } function in class:v8::internal::HEnvironment
463 virtual void ReturnInstruction(HInstruction* instr, int ast_id) = 0;
498 virtual void ReturnInstruction(HInstruction* instr, int ast_id);
510 virtual void ReturnInstruction(HInstruction* instr, int ast_id);
525 virtual void ReturnInstruction(HInstruction* instr, int ast_id);
822 int ast_id);
    [all...]
objects.cc 6398 int ast_id = iterator.Next(); local
    [all...]

Completed in 743 milliseconds