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 46 LUnallocated* unalloc = NULL;
52 unalloc = LUnallocated::cast(this);
54 if (unalloc->basic_policy() == LUnallocated::FIXED_SLOT) {
59 case LUnallocated::NONE:
61 case LUnallocated::FIXED_REGISTER: {
72 case LUnallocated::FIXED_DOUBLE_REGISTER: {
83 case LUnallocated::MUST_HAVE_REGISTER:
86 case LUnallocated::MUST_HAVE_DOUBLE_REGISTER:
89 case LUnallocated::WRITABLE_REGISTER:
92 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 38 LUnallocated* unalloc = LUnallocated::cast(operand_);
219 LUnallocated* unalloc = new(zone) LUnallocated(LUnallocated::NONE);
594 LOperand* LAllocator::AllocateFixed(LUnallocated* operand,
672 int index = LUnallocated::cast(operand)->virtual_register();
683 return LiveRangeFor(LUnallocated::cast(operand)->virtual_register());
709 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 151 if (LUnallocated::TooManyParameters(scope->num_parameters())) {
157 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());
407 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
408 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
412 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());
414 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
415 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
419 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());
414 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
415 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
419 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());
420 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
421 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
425 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());
382 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
383 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
386 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());
436 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
437 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
441 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg)
    [all...]
lithium-ia32.h     [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.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());
433 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
434 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
438 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());
447 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
448 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
452 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());
338 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
339 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
343 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-arm64.h     [all...]

Completed in 1372 milliseconds