Home
last modified time | relevance | path

Searched refs:uint32_instructions_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/crankshaft/
Dhydrogen.h445 DCHECK(uint32_instructions_ == NULL || !uint32_instructions_->is_empty()); in has_uint32_instructions()
446 return uint32_instructions_ != NULL; in has_uint32_instructions()
450 DCHECK(uint32_instructions_ == NULL || !uint32_instructions_->is_empty()); in uint32_instructions()
451 return uint32_instructions_; in uint32_instructions()
455 DCHECK(uint32_instructions_ == NULL || !uint32_instructions_->is_empty()); in RecordUint32Instruction()
456 if (uint32_instructions_ == NULL) { in RecordUint32Instruction()
457 uint32_instructions_ = new(zone()) ZoneList<HInstruction*>(4, zone()); in RecordUint32Instruction()
459 uint32_instructions_->Add(instr, zone()); in RecordUint32Instruction()
490 ZoneList<HInstruction*>* uint32_instructions_; variable
Dhydrogen.cc3228 uint32_instructions_(NULL), in HGraph()