HomeSort by relevance Sort by last modified time
    Searched refs:destination_ (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
lithium.h 261 : source_(source), destination_(destination) {
267 LOperand* destination() const { return destination_; }
268 void set_destination(LOperand* operand) { destination_ = operand; }
273 return destination_ == NULL && source_ != NULL;
284 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
285 (destination_ != NULL && destination_->IsConstantOperand());
289 return destination_ != NULL && destination_->IsIgnored();
293 void Eliminate() { source_ = destination_ = NULL;
301 LOperand* destination_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
deoptimizer.h 34 : destination_(destination), value_(value) { }
36 T destination() const { return destination_; }
40 T destination_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/compiler/
instruction.h 273 : source_(source), destination_(destination) {}
278 InstructionOperand* destination() const { return destination_; }
279 void set_destination(InstructionOperand* operand) { destination_ = operand; }
283 bool IsPending() const { return destination_ == NULL && source_ != NULL; }
293 return IsEliminated() || source_->Equals(destination_) || IsIgnored() ||
294 (destination_ != NULL && destination_->IsConstant());
298 return destination_ != NULL && destination_->IsIgnored();
302 void Eliminate() { source_ = destination_ = NULL;
310 InstructionOperand* destination_; member in class:v8::internal::compiler::FINAL
    [all...]
  /art/compiler/optimizing/
nodes.h 3883 Location destination_; member in class:art::MoveOperands
    [all...]

Completed in 134 milliseconds