Home
last modified time | relevance | path

Searched refs:ExprEffect (Results 1 – 1 of 1) sorted by relevance

/external/v8/tools/gcmole/
Dgcmole.cc277 class ExprEffect { class
288 static ExprEffect None() { return ExprEffect(kNoEffect, NULL); } in None()
289 static ExprEffect NoneWithEnv(Environment* env) { in NoneWithEnv()
290 return ExprEffect(kNoEffect, env); in NoneWithEnv()
292 static ExprEffect RawUse() { return ExprEffect(kRawUse, NULL); } in RawUse()
294 static ExprEffect Merge(ExprEffect a, ExprEffect b);
295 static ExprEffect MergeSeq(ExprEffect a, ExprEffect b);
296 ExprEffect Define(const std::string& name);
302 static ExprEffect GC() { in GC()
303 return ExprEffect(kCausesGC, NULL); in GC()
[all …]