HomeSort by: relevance | last modified time | path
    Searched refs:MFE (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVTargetObjectFile.cpp 91 for (const auto &MFE : ModuleFlags) {
92 StringRef Key = MFE.Key->getString();
94 SSThreshold = mdconst::extract<ConstantInt>(MFE.Val)->getZExtValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/
TargetLoweringObjectFile.cpp 159 for (const auto &MFE : ModuleFlags) {
160 StringRef Key = MFE.Key->getString();
162 CFGProfile = cast<MDNode>(MFE.Val);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Module.cpp 324 for (const ModuleFlagEntry &MFE : ModuleFlags) {
325 if (Key == MFE.Key->getString())
326 return MFE.Val;
Core.cpp 373 LLVMOpaqueModuleFlagEntry MFE =
375 return MFE.Behavior;
380 LLVMOpaqueModuleFlagEntry MFE =
382 *Len = MFE.KeyLen;
383 return MFE.Key;
388 LLVMOpaqueModuleFlagEntry MFE =
390 return MFE.Metadata;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
WinException.cpp 410 MachineFunction::const_iterator MFE,
413 : EHInfo(EHInfo), MFI(MFI), MFE(MFE), MBBI(MBBI), BaseState(BaseState) {
463 MachineFunction::const_iterator MFE;
474 for (; MFI != MFE; ++MFI, IsNewBlock = true) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 77 for (const auto &MFE: ModuleFlags) {
79 if (MFE.Behavior == Module::Require)
82 StringRef Key = MFE.Key->getString();
84 Version = mdconst::extract<ConstantInt>(MFE.Val)->getZExtValue();
90 Flags |= mdconst::extract<ConstantInt>(MFE.Val)->getZExtValue();
92 Section = cast<MDString>(MFE.Val)->getString();
97 Flags |= (mdconst::extract<ConstantInt>(MFE.Val)->getZExtValue()) << 8;
99 Flags |= (mdconst::extract<ConstantInt>(MFE.Val)->getZExtValue()) << 24;
101 Flags |= (mdconst::extract<ConstantInt>(MFE.Val)->getZExtValue()) << 16;

Completed in 50 milliseconds