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

  /external/llvm/include/llvm/Target/
TargetOpcodes.h 97 /// A Stackmap instruction captures the location of live variables at its
99 /// that must lie within the function and not contain another stackmap.
100 STACKMAP = 17,
  /external/llvm/lib/Target/AArch64/
AArch64AsmPrinter.cpp 380 MII->getOpcode() == TargetOpcode::STACKMAP)
538 case TargetOpcode::STACKMAP:
AArch64RegisterInfo.cpp 371 // Special handling of dbg_value, stackmap and patchpoint instructions.
372 if (MI.isDebugValue() || MI.getOpcode() == TargetOpcode::STACKMAP ||
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/
LocalStackSlotAllocation.cpp 292 // Debug value, stackmap and patchpoint instructions can't be out of
296 MI->getOpcode() == TargetOpcode::STACKMAP ||
TargetInstrInfo.cpp 441 case TargetOpcode::STACKMAP:
451 llvm_unreachable("unexpected stackmap opcode");
455 // part of the stackmap's live values).
514 if (MI->getOpcode() == TargetOpcode::STACKMAP ||
516 // Fold stackmap/patchpoint.
792 if ((MI->getOpcode() == TargetOpcode::STACKMAP ||
795 // Fold stackmap/patchpoint.
    [all...]
StackMaps.cpp 33 "stackmap-version", cl::init(1),
34 cl::desc("Specify the stackmap encoding version (default = 1)"));
74 llvm_unreachable("Unsupported stackmap version!");
238 /// that need to be recorded in the stackmap.
295 assert(PatchPointOpers(&MI).hasDef() && "Stackmap has no return value.");
345 assert(MI.getOpcode() == TargetOpcode::STACKMAP && "expected stackmap");
384 /// Emit the stackmap header.
519 /// Serialize the stackmap data.
InlineSpiller.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.cpp 740 else if (MI.getOpcode() == TargetOpcode::STACKMAP ||
820 bool noImmForm = !MI.isInlineAsm() && OpC != TargetOpcode::STACKMAP &&
847 OpC == TargetOpcode::STACKMAP ||
    [all...]
PPCAsmPrinter.cpp 345 MII->getOpcode() == TargetOpcode::STACKMAP)
503 case TargetOpcode::STACKMAP:
    [all...]
PPCInstrInfo.cpp     [all...]
PPCISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86RegisterInfo.cpp 597 if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) {
X86MCInstLower.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 754 // Handle STACKMAP and PATCHPOINT specially and then use the generic code.
755 if (Opc == TargetOpcode::STACKMAP || Opc == TargetOpcode::PATCHPOINT) {
    [all...]
FastISel.cpp 603 // void @llvm.experimental.stackmap(i64 <id>, i32 <numShadowBytes>,
606 "Stackmap cannot return a value.");
608 // The stackmap intrinsic only records the live variables (the arguments
615 // STACKMAP(id, nbytes, ...)
637 // We are not adding any register mask info here, because the stackmap doesn't
656 // Issue STACKMAP.
658 TII.get(TargetOpcode::STACKMAP));
668 // Inform the Frame Information that we have a stackmap in this function.
    [all...]
SelectionDAGBuilder.cpp     [all...]

Completed in 1304 milliseconds