HomeSort by relevance Sort by last modified time
    Searched refs:IsRegister (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/llvm/include/llvm/MC/
MachineLocation.h 27 bool IsRegister; // True if location is a register.
37 : IsRegister(false), Register(0), Offset(0) {}
40 : IsRegister(true), Register(R), Offset(0) {}
43 : IsRegister(false), Register(R), Offset(O) {}
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
52 bool isIndirect() const { return !IsRegister; }
53 bool isReg() const { return IsRegister; }
56 void setIsRegister(bool Is) { IsRegister = Is; }
61 IsRegister = true
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-gap-resolver-x87.cc 132 if (source->IsRegister()) ++source_uses_[source->index()];
135 if (destination->IsRegister()) ++destination_uses_[destination->index()];
143 if (source->IsRegister()) {
149 if (destination->IsRegister()) {
223 if (operand->IsRegister() && operand->index() == spilled_register_) {
270 if (source->IsRegister()) {
271 DCHECK(destination->IsRegister() || destination->IsStackSlot());
277 DCHECK(destination->IsRegister() || destination->IsStackSlot());
279 if (destination->IsRegister()) {
293 if (destination->IsRegister()) {
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-gap-resolver-ia32.cc 131 if (source->IsRegister()) ++source_uses_[source->index()];
134 if (destination->IsRegister()) ++destination_uses_[destination->index()];
142 if (source->IsRegister()) {
148 if (destination->IsRegister()) {
222 if (operand->IsRegister() && operand->index() == spilled_register_) {
269 if (source->IsRegister()) {
270 DCHECK(destination->IsRegister() || destination->IsStackSlot());
276 DCHECK(destination->IsRegister() || destination->IsStackSlot());
278 if (destination->IsRegister()) {
292 if (destination->IsRegister()) {
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 147 if (source->IsRegister()) {
149 if (destination->IsRegister()) {
160 if (destination->IsRegister()) {
172 if (destination->IsRegister()) {
243 if (source->IsRegister() && destination->IsRegister()) {
251 } else if ((source->IsRegister() && destination->IsStackSlot()) ||
252 (source->IsStackSlot() && destination->IsRegister())) {
255 cgen_->ToRegister(source->IsRegister() ? source : destination);
257 cgen_->ToOperand(source->IsRegister() ? destination : source)
    [all...]
  /external/v8/src/compiler/
linkage.h 81 if (!caller_location.IsRegister()) {
110 bool IsRegister() const { return TypeField::decode(bit_field_) == REGISTER; }
112 return IsRegister() && GetLocation() == ANY_REGISTER;
114 bool IsCallerFrameSlot() const { return !IsRegister() && GetLocation() < 0; }
115 bool IsCalleeFrameSlot() const { return !IsRegister() && GetLocation() >= 0; }
118 DCHECK(IsRegister());
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.cc 160 if (source->IsRegister()) {
182 if (saved_destination_->IsRegister()) {
206 if (source->IsRegister()) {
208 if (destination->IsRegister()) {
216 if (destination->IsRegister()) {
235 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 156 if (source->IsRegister()) {
181 if (saved_destination_->IsRegister()) {
208 if (source->IsRegister()) {
210 if (destination->IsRegister()) {
219 if (destination->IsRegister()) {
228 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.cc 146 if (source->IsRegister()) {
167 if (saved_destination_->IsRegister()) {
193 if (source->IsRegister()) {
195 if (destination->IsRegister()) {
203 if (destination->IsRegister()) {
228 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.cc 146 if (source->IsRegister()) {
167 if (saved_destination_->IsRegister()) {
193 if (source->IsRegister()) {
195 if (destination->IsRegister()) {
203 if (destination->IsRegister()) {
228 if (destination->IsRegister()) {
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.cc 148 if (source->IsRegister()) {
169 if (saved_destination_->IsRegister()) {
193 if (source->IsRegister()) {
195 if (destination->IsRegister()) {
203 if (destination->IsRegister()) {
219 if (destination->IsRegister()) {
  /external/v8/src/compiler/x64/
instruction-scheduler-x64.cc 135 return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags
145 return instr->InputAt(0)->IsRegister() ? kNoOpcodeFlags
code-generator-x64.cc 239 if (instr->Output()->IsRegister()) { \
250 if (instr->InputAt(0)->IsRegister()) { \
256 if (instr->InputAt(1)->IsRegister()) { \
268 if (instr->InputAt(0)->IsRegister()) { \
276 if (instr->InputAt(1)->IsRegister()) { \
288 if (instr->Output()->IsRegister()) { \
294 if (instr->Output()->IsRegister()) { \
307 } else if (instr->InputAt(0)->IsRegister()) { \
355 if (instr->InputAt(3)->IsRegister()) { \
408 if (instr->InputAt(3)->IsRegister()) { \
    [all...]
  /art/compiler/optimizing/
intrinsics_utils.h 68 DCHECK(out.IsRegister()); // TODO: Replace this when we support output in memory.
locations.h 138 bool IsRegister() const {
155 return IsRegister() || IsFpuRegister() || IsRegisterPair() || IsFpuRegisterPair();
159 DCHECK(IsRegister() || IsFpuRegister());
175 DCHECK(IsRegister());
415 if (loc.IsRegister()) {
424 if (loc.IsRegister()) {
582 return input.IsRegister()
locations.cc 87 if (location.IsRegister() || location.IsFpuRegister()) {
common_arm64.h 56 DCHECK(location.IsRegister()) << location;
61 DCHECK(location.IsRegister()) << location;
133 if (location.IsRegister()) {
code_generator_x86_64.cc 255 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
598 DCHECK(index_.IsRegister());
799 if (current_method.IsRegister()) {
    [all...]
  /external/v8/src/compiler/ia32/
code-generator-ia32.cc 43 if (op->IsRegister()) {
273 if (instr->InputAt(1)->IsRegister()) { \
289 if (instr->InputAt(1)->IsRegister()) { \
304 if (instr->InputAt(1)->IsRegister()) { \
319 if (instr->InputAt(1)->IsRegister()) { \
326 if (instr->InputAt(2)->IsRegister()) { \
    [all...]
  /art/disassembler/
disassembler_arm64.cc 45 if (reg.IsRegister() && reg.Is64Bits()) {
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc 96 if (op->IsRegister()) {
131 return instr->InputAt(index)->IsRegister();
356 if (instr->InputAt(0)->IsRegister()) { \
374 if (instr->InputAt(0)->IsRegister()) { \
391 if (instr->InputAt(0)->IsRegister()) { \
410 if (instr->InputAt(0)->IsRegister()) { \
722 if (instr->InputAt(1)->IsRegister()) {
739 if (instr->InputAt(1)->IsRegister()) {
748 if (instr->InputAt(1)->IsRegister()) {
757 if (instr->InputAt(1)->IsRegister()) {
    [all...]
  /external/v8/src/compiler/arm64/
code-generator-arm64.cc 47 DCHECK(instr_->InputAt(index)->IsRegister() ||
58 DCHECK(instr_->InputAt(index)->IsRegister() ||
169 if (op->IsRegister()) {
176 if (op->IsRegister()) {
452 if (instr->InputAt(1)->IsRegister()) { \
    [all...]
  /external/v8/src/compiler/mips/
code-generator-mips.cc 96 if (op->IsRegister()) {
131 return instr->InputAt(index)->IsRegister();
342 if (instr->InputAt(0)->IsRegister()) { \
360 if (instr->InputAt(0)->IsRegister()) { \
377 if (instr->InputAt(0)->IsRegister()) { \
396 if (instr->InputAt(0)->IsRegister()) { \
678 if (instr->InputAt(1)->IsRegister()) {
692 if (instr->InputAt(1)->IsRegister()) {
700 if (instr->InputAt(1)->IsRegister()) {
708 if (instr->InputAt(1)->IsRegister()) {
    [all...]
  /external/v8/src/compiler/x87/
code-generator-x87.cc 40 if (op->IsRegister()) {
278 if (instr->InputAt(1)->IsRegister()) { \
295 if (instr->InputAt(1)->IsRegister()) { \
310 if (instr->InputAt(1)->IsRegister()) { \
326 if (instr->InputAt(1)->IsRegister()) { \
333 if (instr->InputAt(2)->IsRegister()) { \
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 299 if (instr->InputAt(1)->IsRegister()) { \
316 if (instr->InputAt(1)->IsRegister()) { \
332 if (instr->InputAt(1)->IsRegister()) { \
346 if (instr->InputAt(1)->IsRegister()) { \
    [all...]
  /external/v8/src/arm64/
assembler-arm64-inl.h 100 return IsRegister() &&
134 inline bool CPURegister::IsRegister() const {
156 return IsRegister() && (reg_code == kZeroRegCode);
162 return IsRegister() && (reg_code == kSPRegInternalCode);
919 if (rt.IsRegister()) {
932 if (rt.IsRegister()) {
943 if (rt.IsRegister()) {
956 if (rt.IsRegister()) {
966 if (rt.IsRegister()) {
    [all...]

Completed in 475 milliseconds

1 2 3 4