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

  /external/v8/src/compiler/
register-allocator-verifier.cc 154 const ImmediateOperand* imm = ImmediateOperand::cast(op);
155 int value = imm->type() == ImmediateOperand::INLINE ? imm->inline_value()
220 const ImmediateOperand* imm = ImmediateOperand::cast(op);
221 int value = imm->type() == ImmediateOperand::INLINE
instruction.h 390 class ImmediateOperand : public InstructionOperand {
394 explicit ImmediateOperand(ImmediateType type, int32_t value)
412 static ImmediateOperand* New(Zone* zone, ImmediateType type, int32_t value) {
413 return InstructionOperand::New(zone, ImmediateOperand(type, value));
416 INSTRUCTION_OPERAND_CASTS(ImmediateOperand, IMMEDIATE);
    [all...]
code-generator-impl.h 148 return gen_->code()->GetImmediate(ImmediateOperand::cast(op));
instruction.cc 149 ImmediateOperand imm = ImmediateOperand::cast(op);
151 case ImmediateOperand::INLINE:
153 case ImmediateOperand::INDEXED:
961 ? GetImmediate(ImmediateOperand::cast(operand)
    [all...]
  /external/v8/src/compiler/x64/
instruction-selector-x64.cc 799 inputs[input_count++] = ImmediateOperand(ImmediateOperand::INLINE, 4);
803 ImmediateOperand(ImmediateOperand::INLINE, displacement + 4);
    [all...]
code-generator-x64.cc     [all...]
  /external/v8/src/compiler/mips/
instruction-selector-mips.cc 911 ImmediateOperand(ImmediateOperand::INLINE, 0),
    [all...]
  /external/v8/src/compiler/mips64/
instruction-selector-mips64.cc     [all...]
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc     [all...]
  /external/v8/src/compiler/x87/
code-generator-x87.cc 520 __ push(Immediate(ImmediateOperand::cast(source).inline_value()));
    [all...]

Completed in 88 milliseconds