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

  /external/v8/src/crankshaft/
lithium.cc 48 LUnallocated* unalloc = NULL;
54 unalloc = LUnallocated::cast(this);
56 if (unalloc->basic_policy() == LUnallocated::FIXED_SLOT) {
61 case LUnallocated::NONE:
63 case LUnallocated::FIXED_REGISTER: {
74 case LUnallocated::FIXED_DOUBLE_REGISTER: {
85 case LUnallocated::MUST_HAVE_REGISTER:
88 case LUnallocated::MUST_HAVE_DOUBLE_REGISTER:
91 case LUnallocated::WRITABLE_REGISTER:
94 case LUnallocated::SAME_AS_FIRST_INPUT
    [all...]
lithium.h 73 class LUnallocated : public LOperand {
105 explicit LUnallocated(ExtendedPolicy policy) : LOperand(UNALLOCATED, 0) {
111 LUnallocated(BasicPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
118 LUnallocated(ExtendedPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
126 LUnallocated(ExtendedPolicy policy, Lifetime lifetime)
133 LUnallocated* CopyUnconstrained(Zone* zone) {
134 LUnallocated* result = new(zone) LUnallocated(ANY);
139 static LUnallocated* cast(LOperand* op) {
141 return reinterpret_cast<LUnallocated*>(op)
    [all...]
lithium-allocator.cc 39 LUnallocated* unalloc = LUnallocated::cast(operand_);
220 LUnallocated* unalloc = new(zone) LUnallocated(LUnallocated::NONE);
595 LOperand* LAllocator::AllocateFixed(LUnallocated* operand,
673 int index = LUnallocated::cast(operand)->virtual_register();
684 return LiveRangeFor(LUnallocated::cast(operand)->virtual_register());
710 LUnallocated* unalloc_operand = LUnallocated::cast(operand)
    [all...]
lithium-allocator.h 28 class LUnallocated;
355 if (next_virtual_register_ >= LUnallocated::kMaxVirtualRegisters) {
408 LOperand* AllocateFixed(LUnallocated* operand, int pos, bool is_tagged);
hydrogen.cc 152 if (LUnallocated::TooManyParameters(scope->num_parameters())) {
158 LUnallocated::TooManyParametersOrStackSlots(scope->num_parameters(),
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 30 LUnallocated::cast(Output())->HasFixedPolicy() ||
31 !LUnallocated::cast(Output())->HasRegisterPolicy());
33 LUnallocated* operand = LUnallocated::cast(it.Current());
38 LUnallocated* operand = LUnallocated::cast(it.Current());
381 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
382 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
386 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-arm.h     [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.cc 32 LUnallocated::cast(Output())->HasFixedPolicy() ||
33 !LUnallocated::cast(Output())->HasRegisterPolicy());
35 LUnallocated* operand = LUnallocated::cast(it.Current());
40 LUnallocated* operand = LUnallocated::cast(it.Current());
388 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
389 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
393 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-mips.h     [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.cc 32 LUnallocated::cast(Output())->HasFixedPolicy() ||
33 !LUnallocated::cast(Output())->HasRegisterPolicy());
35 LUnallocated* operand = LUnallocated::cast(it.Current());
40 LUnallocated* operand = LUnallocated::cast(it.Current());
388 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
389 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
393 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-mips64.h     [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.cc 29 DCHECK(Output() == NULL || LUnallocated::cast(Output())->HasFixedPolicy() ||
30 !LUnallocated::cast(Output())->HasRegisterPolicy());
32 LUnallocated* operand = LUnallocated::cast(it.Current());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
394 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
395 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
399 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-ppc.h     [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.cc 29 DCHECK(Output() == NULL || LUnallocated::cast(Output())->HasFixedPolicy() ||
30 !LUnallocated::cast(Output())->HasRegisterPolicy());
32 LUnallocated* operand = LUnallocated::cast(it.Current());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
360 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
361 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
364 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-s390.h     [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 33 LUnallocated::cast(Output())->HasFixedPolicy() ||
34 !LUnallocated::cast(Output())->HasRegisterPolicy());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
41 LUnallocated* operand = LUnallocated::cast(it.Current());
410 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
411 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
415 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg)
    [all...]
lithium-ia32.h     [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 34 LUnallocated::cast(Output())->HasFixedPolicy() ||
35 !LUnallocated::cast(Output())->HasRegisterPolicy());
37 LUnallocated* operand = LUnallocated::cast(it.Current());
42 LUnallocated* operand = LUnallocated::cast(it.Current());
409 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
410 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
414 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg)
    [all...]
lithium-x64.h     [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 33 LUnallocated::cast(Output())->HasFixedPolicy() ||
34 !LUnallocated::cast(Output())->HasRegisterPolicy());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
41 LUnallocated* operand = LUnallocated::cast(it.Current());
421 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
422 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
426 LUnallocated* LChunkBuilder::ToUnallocated(X87Register reg)
    [all...]
lithium-x87.h     [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 30 LUnallocated::cast(Output())->HasFixedPolicy() ||
31 !LUnallocated::cast(Output())->HasRegisterPolicy());
33 LUnallocated* operand = LUnallocated::cast(it.Current());
38 LUnallocated* operand = LUnallocated::cast(it.Current());
312 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
313 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
317 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-arm64.h     [all...]

Completed in 1083 milliseconds