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

  /external/v8/src/
lithium.cc 36 LUnallocated* unalloc = NULL;
42 unalloc = LUnallocated::cast(this);
45 case LUnallocated::NONE:
47 case LUnallocated::FIXED_REGISTER: {
53 case LUnallocated::FIXED_DOUBLE_REGISTER: {
59 case LUnallocated::FIXED_SLOT:
62 case LUnallocated::MUST_HAVE_REGISTER:
65 case LUnallocated::WRITABLE_REGISTER:
68 case LUnallocated::SAME_AS_FIRST_INPUT:
71 case LUnallocated::ANY
    [all...]
lithium.h 86 class LUnallocated: public LOperand {
113 explicit LUnallocated(Policy policy) : LOperand(UNALLOCATED, 0) {
117 LUnallocated(Policy policy, int fixed_index) : LOperand(UNALLOCATED, 0) {
121 LUnallocated(Policy policy, Lifetime lifetime) : LOperand(UNALLOCATED, 0) {
183 LUnallocated* CopyUnconstrained() {
184 LUnallocated* result = new LUnallocated(ANY);
189 static LUnallocated* cast(LOperand* op) {
191 return reinterpret_cast<LUnallocated*>(op);
lithium-allocator.cc 67 LUnallocated* unalloc = LUnallocated::cast(operand_);
242 LUnallocated* unalloc = new(zone) LUnallocated(LUnallocated::NONE);
613 LOperand* LAllocator::AllocateFixed(LUnallocated* operand,
618 if (operand->policy() == LUnallocated::FIXED_SLOT) {
620 } else if (operand->policy() == LUnallocated::FIXED_REGISTER) {
623 } else if (operand->policy() == LUnallocated::FIXED_DOUBLE_REGISTER) {
688 int index = LUnallocated::cast(operand)->virtual_register()
    [all...]
lithium-allocator.h 53 class LUnallocated;
462 if (next_virtual_register_ > LUnallocated::kMaxVirtualRegisters) {
507 LOperand* AllocateFixed(LUnallocated* operand, int pos, bool is_tagged);
compiler.cc 225 // Due to an encoding limit on LUnallocated operands in the Lithium
232 const int parameter_limit = -LUnallocated::kMinFixedIndex;
233 const int locals_limit = LUnallocated::kMaxFixedIndex;
hydrogen.cc 685 if (values > LUnallocated::kMaxVirtualRegisters) {
    [all...]
  /external/v8/src/arm/
lithium-arm.cc 69 LUnallocated::cast(Output())->HasFixedPolicy() ||
70 !LUnallocated::cast(Output())->HasRegisterPolicy());
72 LUnallocated* operand = LUnallocated::cast(it.Current());
77 LUnallocated* operand = LUnallocated::cast(it.Current());
584 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
590 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-arm.h     [all...]
  /external/v8/src/mips/
lithium-mips.cc 69 LUnallocated::cast(Output())->HasFixedPolicy() ||
70 !LUnallocated::cast(Output())->HasRegisterPolicy());
72 LUnallocated* operand = LUnallocated::cast(it.Current());
77 LUnallocated* operand = LUnallocated::cast(it.Current());
584 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
590 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-mips.h     [all...]
  /external/v8/src/x64/
lithium-x64.cc 79 LUnallocated::cast(Output())->HasFixedPolicy() ||
80 !LUnallocated::cast(Output())->HasRegisterPolicy());
82 LUnallocated* operand = LUnallocated::cast(it.Current());
87 LUnallocated* operand = LUnallocated::cast(it.Current());
577 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
578 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
583 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg)
    [all...]
lithium-x64.h     [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 79 LUnallocated::cast(Output())->HasFixedPolicy() ||
80 !LUnallocated::cast(Output())->HasRegisterPolicy());
82 LUnallocated* operand = LUnallocated::cast(it.Current());
87 LUnallocated* operand = LUnallocated::cast(it.Current());
579 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
580 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
585 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg)
    [all...]
lithium-ia32.h     [all...]

Completed in 235 milliseconds