Lines Matching refs:Director
269 CloningDirector *Director;
277 CloningDirector *Director)
280 CodeInfo(codeInfo), Director(Director) {
281 // These are optional components. The Director may return null.
282 if (Director) {
283 TypeMapper = Director->getTypeRemapper();
284 Materializer = Director->getValueMaterializer();
335 // If the "Director" remaps the instruction, don't clone it.
336 if (Director) {
338 Director->handleInstruction(VMap, &*II, NewBB);
339 // If the cloning director says stop, we want to stop everything, not
341 // cloned). The cloning director is responsible for inserting a proper
345 // If the cloning director says skip, continue to the next instruction.
346 // In this case, the cloning director is responsible for mapping the
400 if (Director) {
402 = Director->handleInstruction(VMap, OldTI, NewBB);
403 // If the cloning director says stop, we want to stop everything, not
405 // cloned). The cloning director is responsible for inserting a proper
410 // If the director says to skip with a terminate instruction, we still
490 CloningDirector *Director) {
496 if (Director) {
497 TypeMapper = Director->getTypeRemapper();
498 Materializer = Director->getValueMaterializer();
510 NameSuffix, CodeInfo, Director);