Lines Matching full:action
17 IntrusiveRefCntPtr<vfs::FileSystem> FS, PGOAction Action, in PGOOptions() argument
23 Action(Action), CSAction(CSAction), ColdOptType(ColdType), in PGOOptions()
25 (Action == SampleUse && !PseudoProbeForProfiling)), in PGOOptions()
28 // Note, we do allow ProfileFile.empty() for Action=IRUse LTO can in PGOOptions()
29 // callback with IRUse action without ProfileFile. in PGOOptions()
33 (this->Action != IRInstr && this->Action != SampleUse)); in PGOOptions()
40 assert(this->CSAction != CSIRUse || this->Action == IRUse); in PGOOptions()
43 assert(this->MemoryProfile.empty() || this->Action != PGOOptions::IRInstr); in PGOOptions()
45 // If neither Action nor CSAction nor MemoryProfile are set, in PGOOptions()
47 assert(this->Action != NoAction || this->CSAction != NoCSAction || in PGOOptions()
52 assert(this->FS || !(this->Action == IRUse || this->CSAction == CSIRUse || in PGOOptions()