reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/CodeGen/MachineFunction.h
   73 struct WasmEHFuncInfo;

References

include/llvm/CodeGen/MachineFunction.h
  248   WasmEHFuncInfo *WasmEHInfo = nullptr;
  514   const WasmEHFuncInfo *getWasmEHFuncInfo() const { return WasmEHInfo; }
  515   WasmEHFuncInfo *getWasmEHFuncInfo() { return WasmEHInfo; }
include/llvm/CodeGen/WasmEHFuncInfo.h
   55 void calculateWasmEHInfo(const Function *F, WasmEHFuncInfo &EHInfo);
include/llvm/Support/Allocator.h
   88       !std::is_same<typename std::remove_cv<T>::type, void>::value, void>::type
   89   Deallocate(T *Ptr, size_t Num = 1) {
   90     Deallocate(static_cast<const void *>(Ptr), Num * sizeof(T));
lib/CodeGen/MachineFunction.cpp
  196     WasmEHInfo = new (Allocator) WasmEHFuncInfo();
lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
  126     WasmEHFuncInfo &EHInfo = *MF->getWasmEHFuncInfo();
  317     WasmEHFuncInfo &EHInfo = *MF->getWasmEHFuncInfo();
lib/CodeGen/WasmEHPrepare.cpp
  350 void llvm::calculateWasmEHInfo(const Function *F, WasmEHFuncInfo &EHInfo) {
lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
  238   auto *EHInfo = MF.getWasmEHFuncInfo();
usr/include/c++/7.4.0/type_traits
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;