Lines Matching refs:tier
33 #include "src/wasm/wasm-tier.h"
274 ExecutionTier tier() const { return ExecutionTierField::decode(flags_); }
296 bool is_liftoff() const { return tier() == ExecutionTier::kLiftoff; }
298 bool is_turbofan() const { return tier() == ExecutionTier::kTurbofan; }
377 // {kForDebugging}, but {tier()} is not {kLiftoff}, then Liftoff compilation
396 ExecutionTier tier, ForDebugging for_debugging)
399 flags_(KindField::encode(kind) | ExecutionTierField::encode(tier) |
636 ExecutionTier tier, ForDebugging for_debugging);
669 ExecutionTier tier);
688 bool HasCodeWithTier(uint32_t index, ExecutionTier tier) const;
788 void UpdateCPUDuration(size_t cpu_duration, ExecutionTier tier);
822 // Fully recompile this module in the tier set previously via
827 // Find all functions that need to be recompiled for a new tier. Note that
877 ExecutionTier tier, ForDebugging for_debugging,
978 // compilation and tier up. The number of entries is
994 // Cache both baseline and top-tier code if we are debugging, to speed up
996 // Maps <tier, function_index> to WasmCode.